Changeset 2212 in Sophya for trunk/SophyaLib/SysTools/cxxcmplnk.cc
- Timestamp:
- Oct 15, 2002, 5:48:53 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/cxxcmplnk.cc
r2190 r2212 36 36 37 37 /* --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 */ 38 44 CxxCompilerLinker::CxxCompilerLinker(bool fglibsophya, bool fglibextsophya, bool fglibpi) 39 45 : verbose(false) … … 136 142 137 143 /* --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 */ 138 152 int CxxCompilerLinker::Compile(string const & name, string & oname) 139 153 { … … 160 174 161 175 /* --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 */ 162 184 int CxxCompilerLinker::BuildSO(string const & oname, string & soname) 163 185 {
Note:
See TracChangeset
for help on using the changeset viewer.