try to disable VerifyFortranC tests on Darwin

This commit is contained in:
Denis Davydov 2016-03-25 12:05:48 +01:00
parent 828aeefb1d
commit 21e81e92a9

View file

@ -110,6 +110,13 @@ def install(self, spec, prefix):
'-DTrilinos_EXTRA_LINK_FLAGS:STRING=-L%s/ -lgfortran' % libgfortran,
'-DTrilinos_ENABLE_Fortran=ON'
])
# FIXME:
# VerifyFortranC test of CMake does not contain -lgfortran and thus fails.
# This could be GCC/CMake related, but appears at least on OSX with Clang@7.0.2 and GNU Fortran@5.3.0
if sys.platform == 'darwin':
options.extend([
'-DTrilinos_SKIP_FORTRANCINTERFACE_VERIFY_TEST:BOOL=TRUE'
])
# for build-debug only:
options.extend([