# HG changeset patch # User Balazs Dezso # Date 1240857969 -7200 # Node ID 3e28dbeed635902616afbefcb4179df55b36ec1b # Parent 96d9cc65c8db41629baee5dbbddfe5971ec26b12 Fix compilation order (#273) diff -r 96d9cc65c8db -r 3e28dbeed635 getting_started.dox --- a/getting_started.dox Fri Mar 27 05:01:50 2009 +0100 +++ b/getting_started.dox Mon Apr 27 20:46:09 2009 +0200 @@ -42,7 +42,7 @@ that we are using the installed LEMON). \verbatim -g++ -lemon -o hello_lemon hello_lemon.cc +g++ -o hello_lemon hello_lemon.cc -lemon \endverbatim As a result you will get the exacutable \c hello_lemon in the current @@ -57,7 +57,7 @@ You have to issue a command like this. \verbatim -g++ -lemon -I ~/lemon/include -L ~/lemon/lib -o hello_lemon hello_lemon.cc +g++ -o hello_lemon -I ~/lemon/include hello_lemon.cc -L ~/lemon/lib -lemon \endverbatim If everything has gone well, then our program prints out the followings.