diff options
author | Brad King <brad.king@kitware.com> | 2010-01-25 13:27:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-01-25 13:27:34 (GMT) |
commit | 4d1351e8d3d97b78baa67d24e72f0baa3bb8ada5 (patch) | |
tree | ee7110260eb6bc15444bab9e60ca9546102ccad2 /Tests/Fortran | |
parent | 9348f626f99b4c64b23a9fab805f0cfa33479b29 (diff) | |
download | CMake-4d1351e8d3d97b78baa67d24e72f0baa3bb8ada5.zip CMake-4d1351e8d3d97b78baa67d24e72f0baa3bb8ada5.tar.gz CMake-4d1351e8d3d97b78baa67d24e72f0baa3bb8ada5.tar.bz2 |
Skip Fortran module mangling test on PathScale
We disable this test because PathScale Fortran mangles module symbols as
"MYSUB.in.MYMODULE" so we cannot interface with it from C. We already
did this for SunPro and MIPSpro.
Diffstat (limited to 'Tests/Fortran')
-rw-r--r-- | Tests/Fortran/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Fortran/CMakeLists.txt b/Tests/Fortran/CMakeLists.txt index e66b7a0..04563ef 100644 --- a/Tests/Fortran/CMakeLists.txt +++ b/Tests/Fortran/CMakeLists.txt @@ -34,7 +34,7 @@ function(test_fortran_c_interface_module) FortranCInterface_VERIFY() FortranCInterface_VERIFY(CXX) if(CMAKE_Fortran_COMPILER_SUPPORTS_F90) - if(NOT CMAKE_Fortran_COMPILER_ID MATCHES "SunPro|MIPSpro") + if(NOT CMAKE_Fortran_COMPILER_ID MATCHES "SunPro|MIPSpro|PathScale") set(module_expected 1) endif() if(FortranCInterface_MODULE_FOUND OR module_expected) |