diff options
author | Brad King <brad.king@kitware.com> | 2019-02-21 16:07:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-21 16:12:51 (GMT) |
commit | 214fcefa5233fb9c5906921f72d067626a51a349 (patch) | |
tree | 266ca65c9cb929ce4ead869bbaa62d3a5645320b /Modules/FortranCInterface | |
parent | eb08e68b77954a4b439ee66b4987789b213d878a (diff) | |
download | CMake-214fcefa5233fb9c5906921f72d067626a51a349.zip CMake-214fcefa5233fb9c5906921f72d067626a51a349.tar.gz CMake-214fcefa5233fb9c5906921f72d067626a51a349.tar.bz2 |
Remove now-unused code once used for MIPSpro on IRIX
In commit beb991110d (Remove now-unused code once used on IRIX,
2019-01-11, v3.14.0-rc1~167^2) we removed remnants of IRIX support.
Also remove remnants of MIPSpro compiler support.
Diffstat (limited to 'Modules/FortranCInterface')
-rw-r--r-- | Modules/FortranCInterface/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt index e3b81d7..381080b 100644 --- a/Modules/FortranCInterface/CMakeLists.txt +++ b/Modules/FortranCInterface/CMakeLists.txt @@ -15,11 +15,11 @@ int main() { return 0; } # List manglings of global symbol names to try. set(global_symbols my_sub # VisualAge - my_sub_ # GNU, Intel, HP, SunPro, MIPSpro, PGI + my_sub_ # GNU, Intel, HP, SunPro, PGI my_sub__ # GNU g77 MY_SUB # Intel on Windows mysub # VisualAge - mysub_ # GNU, Intel, HP, SunPro, MIPSpro, PGI + mysub_ # GNU, Intel, HP, SunPro, PGI MYSUB # Intel on Windows ${FortranCInterface_GLOBAL_SYMBOLS} ) @@ -48,7 +48,6 @@ set(module_symbols list(REMOVE_DUPLICATES module_symbols) # Note that some compiler manglings cannot be invoked from C: -# MIPSpro uses "MY_SUB.in.MY_MODULE" # SunPro uses "my_module.my_sub_" # PathScale uses "MY_SUB.in.MY_MODULE" |