Skip to content
Snippets Groups Projects
Commit 6bbc7e8d authored by jthies's avatar jthies Committed by Chuck Atkins
Browse files

phist can't be compiled with gcc older than 4.9.2 (#11677)

* phist can't be compiled with gcc older than 4.9.2
parent 531114cd
No related branches found
No related tags found
No related merge requests found
...@@ -111,6 +111,10 @@ class Phist(CMakePackage): ...@@ -111,6 +111,10 @@ class Phist(CMakePackage):
# required a separate package # required a separate package
conflicts('+fortran', when='@:1.6.99') conflicts('+fortran', when='@:1.6.99')
# older gcc's may produce incorrect SIMD code and fail
# to compile some OpenMP statements
conflicts('%gcc@:4.9.1')
def cmake_args(self): def cmake_args(self):
spec = self.spec spec = self.spec
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment