Changeset 2411 in Sophya


Ignore:
Timestamp:
Jul 21, 2003, 1:11:53 PM (22 years ago)
Author:
ansari
Message:

Correction bug gestion include pour -import / Reza 21/07/03

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaProg/PrgUtil/runcxx.cc

    r2322 r2411  
    2626  \verbatim
    2727  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
    2930  runcxx : compiling and running of a piece of C++ code
    3031    Usage: runcxx [-compopt CompileOptions] [-linkopt LinkOptions]
     
    3435                  [-uarg UserArg1 UserArg2 ...]
    3536   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
    3739  \endverbatim
    3840*/
     
    5961       << "                 [-uarg UserArg1 UserArg2 ...] \n"
    6062       << "   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"
    6265       << endl;
    6366
     
    116119      if (k == narg-1) Usage(true);
    117120      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");
    124128    }
    125129
Note: See TracChangeset for help on using the changeset viewer.