summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvenkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-10-24 15:50:44 +0000
committervenkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-10-24 15:50:44 +0000
commitfb0d7463e3b91985900aa5b8098dcc696feecd1e (patch)
treeddaf27e712caad3cc969fcaef32dc22da7682e05
parentae6e9ccc4360a82a37a47268313305cb348cd7f8 (diff)
downloadATCD-fb0d7463e3b91985900aa5b8098dcc696feecd1e.tar.gz
Fri Oct 24 10:48:41 2003 Venkita Subramonian <venkita@cs.wustl.edu>
-rw-r--r--ACE-INSTALL.html13
-rw-r--r--ChangeLog6
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.