Exclude a few packages to build with xl (#3270)

This commit is contained in:
eklee15 2017-03-01 15:46:58 -05:00 committed by Adam J. Stewart
parent fa294a25db
commit 4e601bb6d3

View file

@ -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'