Changeset 2411 in Sophya
- Timestamp:
- Jul 21, 2003, 1:11:53 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/PrgUtil/runcxx.cc
r2322 r2411 26 26 \verbatim 27 27 csh> runcxx -h 28 SOPHYA Version 1.1 Revision 0 (V_Fev2001) -- Mar 9 2001 15:45:31 cxx 28 PIOPersist::Initialize() Starting Sophya Persistence management service 29 SOPHYA Version 1.6 Revision 6 (V_Mai2003) -- Jun 25 2003 12:01:04 cxx 29 30 runcxx : compiling and running of a piece of C++ code 30 31 Usage: runcxx [-compopt CompileOptions] [-linkopt LinkOptions] … … 34 35 [-uarg UserArg1 UserArg2 ...] 35 36 if no file name is specified, read from standard input 36 modulenames: SkyMap, Samba, SkyT, FitsIOServer, LinAlg, IFFTW 37 modulenames: SkyMap, Samba, SkyT, FitsIOServer, 38 LinAlg, IFFTW, XAstroPack 37 39 \endverbatim 38 40 */ … … 59 61 << " [-uarg UserArg1 UserArg2 ...] \n" 60 62 << " if no file name is specified, read from standard input \n" 61 << " modulenames: SkyMap, Samba, SkyT, FitsIOServer, LinAlg, IFFTW \n" 63 << " modulenames: SkyMap, Samba, SkyT, FitsIOServer, \n" 64 << " LinAlg, IFFTW, XAstroPack \n" 62 65 << endl; 63 66 … … 116 119 if (k == narg-1) Usage(true); 117 120 k++; 118 if (strcmp(arg[k], "SkyMap")) inc1.push_back("skymap.h"); 119 else if (strcmp(arg[k], "Samba")) inc1.push_back("samba.h"); 120 else if (strcmp(arg[k], "SkyT")) inc1.push_back("skyt.h"); 121 else if (strcmp(arg[k], "FitsIOServer")) inc1.push_back("fitsautoreader.h"); 122 else if (strcmp(arg[k], "LinAlg")) inc1.push_back("intflapack.h"); 123 else if (strcmp(arg[k], "IFFTW")) inc1.push_back("fftwserver.h"); 121 if (strcmp(arg[k], "SkyMap") == 0) inc1.push_back("skymap.h"); 122 else if (strcmp(arg[k], "Samba") == 0) inc1.push_back("samba.h"); 123 else if (strcmp(arg[k], "SkyT") == 0) inc1.push_back("skyt.h"); 124 else if (strcmp(arg[k], "FitsIOServer") == 0) inc1.push_back("fitsioserver.h"); 125 else if (strcmp(arg[k], "LinAlg") == 0 ) inc1.push_back("intflapack.h"); 126 else if (strcmp(arg[k], "IFFTW") == 0) inc1.push_back("fftwserver.h"); 127 else if (strcmp(arg[k], "XAstroPack") == 0) inc1.push_back("xastropack.h"); 124 128 } 125 129
Note:
See TracChangeset
for help on using the changeset viewer.