Exclude a few packages to build with xl (#3270)
This commit is contained in:
parent
fa294a25db
commit
4e601bb6d3
1 changed files with 8 additions and 0 deletions
|
@ -373,6 +373,14 @@ def cmake_args(self):
|
|||
'-DTrilinos_ENABLE_Pike=OFF',
|
||||
'-DTrilinos_ENABLE_STK=OFF'
|
||||
])
|
||||
|
||||
# disable due to compiler / config errors:
|
||||
if spec.satisfies('%xl') or spec.satisfies('%xl_r'):
|
||||
options.extend([
|
||||
'-DTrilinos_ENABLE_Pamgen:BOOL=OFF',
|
||||
'-DTrilinos_ENABLE_Stokhos:BOOL=OFF'
|
||||
])
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
options.extend([
|
||||
'-DTrilinos_ENABLE_FEI=OFF'
|
||||
|
|
Loading…
Reference in a new issue