Changeset 3572 in Sophya for trunk/SophyaLib/SysTools
- Timestamp:
- Feb 7, 2009, 10:50:34 PM (17 years ago)
- Location:
- trunk/SophyaLib/SysTools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/commander.h
r2955 r3572 79 79 string& grp); 80 80 inline void RegisterCommand(string& keyw, string& usage, CmdExecutor * ce, 81 c har* grp)81 const char* grp) 82 82 { string sgrp = grp; RegisterCommand(keyw, usage, ce, sgrp); } 83 83 -
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) { -
trunk/SophyaLib/SysTools/timing.c
r2648 r3572 115 115 Comm, tcalt, tcal); 116 116 117 printf("ElapsedTime(hh:mm:ss): Total= %02 d:%02d:%02d ",117 printf("ElapsedTime(hh:mm:ss): Total= %02ld:%02ld:%02ld ", 118 118 etmt/3600, (etmt%3600)/60, etmt%60); 119 printf(" (Partial= %02 d:%02d:%02d)\n",119 printf(" (Partial= %02ld:%02ld:%02ld)\n", 120 120 etm/3600, (etm%3600)/60, etm%60); 121 121
Note:
See TracChangeset
for help on using the changeset viewer.