csh> runcxx -h SOPHYA Version 1.1 Revision 0 (V_Fev2001) -- Feb 28 2001 11:19:17 cxx runcxx : compiling and running of a piece of C++ code Usage: runcxx [-compopt CompileOptions] [-linkopt LinkOptions] [-tmpdir TmpDirectory] [-f C++CodeFileName] [-inc includefile] [-inc includefile ...] [-import modulename] [-import modulename ...] [-uarg UserArg1 UserArg2 ...] if no file name is specified, read from standard input modulenames: SkyMap, Samba, SkyT, FitsIOServer, LinAlg, IFFTWMost examples in this manual can be tested using runcxx. The example below shows how to compile, link and run a sample code.
// File example.icc Matrix a(3,3); a = IdentityMatrix(1.); cout << a ; // Executing this sample code csh> runcxx -f example.icc