浏览代码

Sort FortranCInterface global mangling symbols

This just cleans up the list ordering so more entries can be added while
keeping everything organized.
Brad King 16 年之前
父节点
当前提交
8dd02cb78d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Modules/FortranCInterface/CMakeLists.txt

+ 2 - 2
Modules/FortranCInterface/CMakeLists.txt

@@ -11,10 +11,10 @@ int main() { return 0; }
 
 # List manglings of global symbol names to try.
 set(global_symbols
-  my_sub_   # GNU, Intel, HP, SunPro, MIPSpro
   my_sub    # VisualAge
-  mysub_    # GNU, Intel, HP, SunPro, MIPSpro
+  my_sub_   # GNU, Intel, HP, SunPro, MIPSpro
   mysub     # VisualAge
+  mysub_    # GNU, Intel, HP, SunPro, MIPSpro
   ${FortranCInterface_GLOBAL_SYMBOLS}
   )
 list(REMOVE_DUPLICATES global_symbols)