Changeset 3572 in Sophya for trunk/SophyaLib/SysTools/cxxcmplnk.cc
- Timestamp:
- Feb 7, 2009, 10:50:34 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/cxxcmplnk.cc
r3211 r3572 37 37 */ 38 38 39 static char * gcxx_opt = 40 "-O -fdollars-in-identifiers"; 41 static char * KCC_opt = 42 "-O --exceptions --rtti --auto_instantiation --one_instantiation_per_object -D__KCC__"; 43 static char * icc_opt = 44 "-O -fpic -frtti"; 45 static char * cxx_opt = 46 "-O -no_implicit_include -pthread"; 47 static char * SGICC_opt = "-O -prelink -D__SGICC__ -LANG:std"; 48 static char * xlC_opt = 49 "-O -qrtti=all -qeh=v6"; 39 static const char * gcxx_opt = "-O -fdollars-in-identifiers"; 40 static const char * KCC_opt = 41 "-O --exceptions --rtti --auto_instantiation --one_instantiation_per_object -D__KCC__"; 42 static const char * icc_opt = "-O -fpic -frtti"; 43 static const char * cxx_opt = 44 "-O -no_implicit_include -pthread"; 45 static const char * SGICC_opt = "-O -prelink -D__SGICC__ -LANG:std"; 46 static const char * xlC_opt = "-O -qrtti=all -qeh=v6"; 50 47 51 48 /* --Methode-- */ … … 251 248 int CxxCompilerLinker::BuildSO(string const & oname, string & soname) 252 249 { 253 // char * soext = ".dylib"; if defined(Darwin) - pas necessaire Reza 02/2002254 c har * soext = ".so";250 // const char * soext = ".dylib"; if defined(Darwin) - pas necessaire Reza 02/2002 251 const char * soext = ".so"; 255 252 256 253 if (soname.length() < 1) {
Note:
See TracChangeset
for help on using the changeset viewer.