diff options
-rw-r--r-- | ACE-INSTALL.html | 13 | ||||
-rw-r--r-- | ChangeLog | 6 |
2 files changed, 13 insertions, 6 deletions
diff --git a/ACE-INSTALL.html b/ACE-INSTALL.html index 3952ac43caa..1ae3de039ba 100644 --- a/ACE-INSTALL.html +++ b/ACE-INSTALL.html @@ -772,7 +772,7 @@ supported by the DOC group, Riverace, or OCI. <P> <p>You'll also need to do:</p> - <p>setenv DYLD_LIBRARY_PATH $ACE_ROOT/ace</p> + <p>setenv DYLD_LIBRARY_PATH $ACE_ROOT/ace:$ACE_ROOT/lib</p> <p>setenv MACOSX_DEPLOYMENT_TARGET 10.2</p> <p>Currently, all ACE tests pass except Process_Mutex_Test and @@ -1160,7 +1160,7 @@ need to do:<P> like the following<P> <pre><code> - % setenv LD_LIBRARY_PATH $ACE_ROOT/ace:$LD_LIBRARY_PATH + % setenv LD_LIBRARY_PATH $ACE_ROOT/ace:$ACE_ROOT/lib:$LD_LIBRARY_PATH </code></pre><P> <LI>When all this is done, hopefully all you'll need to do is type:<P> @@ -2286,7 +2286,7 @@ Here's what you need to do:<P> want to do something like the following<P> <pre><code> - % setenv LD_LIBRARY_PATH $ACE_ROOT/ace:$LD_LIBRARY_PATH + % setenv LD_LIBRARY_PATH $ACE_ROOT/ace:$ACE_ROOT/lib:$LD_LIBRARY_PATH </code></pre><P> <LI>By default, if the shared object library is built, the services @@ -2338,7 +2338,7 @@ cd ../../../.. # build the host side of things cd build/Linux_g++ -export ACE_ROOT=`pwd`; export LD_LIBRARY_PATH=`pwd`/ace:$LD_LIBRARY_PATH +export ACE_ROOT=`pwd`; export LD_LIBRARY_PATH=`pwd`/ace:`pwd`/lib:$LD_LIBRARY_PATH cd ace make @@ -2632,8 +2632,9 @@ Once this is done, then invoke the top-level Makefile with the </pre><P> This will establish a complete tree of links. In addition, make sure -you set your LD_LIBRARY_PATH to $ACE_ROOT/ace:$LD_LIBRARY_PATH on SVR4 -UNIX platforms.<P> +you set your LD_LIBRARY_PATH to +$ACE_ROOT/ace:$ACE_ROOT/lib:$LD_LIBRARY_PATH on SVR4 UNIX +platforms.<P> When you do a make in the $ACE_ROOT directory you will be producing object code that is not stored in the same place as the original diff --git a/ChangeLog b/ChangeLog index eacbc315881..2575dcb38be 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Fri Oct 24 10:48:41 2003 Venkita Subramonian <venkita@cs.wustl.edu> + + * ACE-INSTALL.html: Changed documentation to reflect the fact that + $ACE_ROOT/lib also has to added LD_LIBRARY_PATH since some of + the libraries are generated in this directory. + Fri Oct 24 10:46:56 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu> * Makefile: Added lib to the release files. |