Ignore:
Timestamp:
Oct 15, 2002, 5:48:53 PM (23 years ago)
Author:
ansari
Message:

Mise a jour de la documentation SysTools, Reza 15/10/2002

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/SysTools/cxxcmplnk.cc

    r2190 r2212  
    3636
    3737/* --Methode-- */
     38/*!
     39  Constructor
     40  \param fglibsophya : if \c true libsophya.so is used when linking
     41  \param fglibextsophya : if \c true libextsophya.so is used when linking
     42  \param fglibpi : if \c true libPI.so is used when linking
     43*/
    3844CxxCompilerLinker::CxxCompilerLinker(bool fglibsophya, bool fglibextsophya, bool fglibpi)
    3945  : verbose(false)
     
    136142
    137143/* --Methode-- */
     144/*!
     145  Compiles the file \c name using the C++ compiler driver and produces
     146  the output object file \c oname. If no output name is specified,
     147  a default output file name is made from the input name, with the
     148  suffix .o , the in temporary directory.
     149  \param name : input C++ source file
     150  \param oname : output object file
     151*/
    138152int CxxCompilerLinker::Compile(string const & name, string & oname)
    139153{
     
    160174
    161175/* --Methode-- */
     176/*!
     177  Creates a shared library from the object file \c oname.
     178  If no output name \c soname is specified,
     179  a default output file name is made from the object name, with the
     180  suffix .so , in the temporary directory.
     181  \param oname : input object file
     182  \param soname : shared library name
     183*/
    162184int CxxCompilerLinker::BuildSO(string const & oname, string & soname)
    163185{
Note: See TracChangeset for help on using the changeset viewer.