Changeset 18:a291609dad52 in lemon-tutorial
- Timestamp:
- 11/06/08 16:55:09 (16 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
getting_started.dox
r16 r18 53 53 54 54 If LEMON is installed <b>user-local</b> into a directory 55 (e.g. <tt>~/lemon</tt>) or if you just skipped the step 56 <tt>make install</tt>, then compiling the code is a bit more difficult. 55 (e.g. <tt>~/lemon</tt>), then compiling the code is a bit more difficult. 57 56 You have to issue a command like this. 58 57 59 58 \verbatim 60 g++ -lemon -I ~/lemon -L ~/lemon/lemon/.libshello_lemon.cc -o hello_lemon59 g++ -lemon -I ~/lemon/include -L ~/lemon/lib hello_lemon.cc -o hello_lemon 61 60 \endverbatim 62 61 -
install.dox
r12 r18 216 216 217 217 You have to give more options to the compiler if LEMON is installed 218 user-local into a directory (denoted by <tt><dir></tt>) 219 or if you just skipped the step <tt>make install</tt>. 220 In the later case <tt><dir></tt> denotes the directory in which the 221 the \c make command have been performed. 222 223 \verbatim 224 g++ -lemon -I <dir> -L <dir>/lemon/.libs [other options] <source file> 218 user-local into a directory (denoted by <tt><dir></tt>). 219 220 \verbatim 221 g++ -lemon -I <dir>/include -L <dir>/lib [other options] <source file> 225 222 \endverbatim 226 223
Note: See TracChangeset
for help on using the changeset viewer.