diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-05-21 15:13:43 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-05-21 15:13:43 +0000 |
commit | 8972cb20310a3088b54862188c004febbc235f29 (patch) | |
tree | cd3884a7caef336949f8718367910afdb6d34b0d /ACE-INSTALL.html | |
parent | a0835678a1bc436f88368af9ed4238e4147f73be (diff) | |
download | ATCD-8972cb20310a3088b54862188c004febbc235f29.tar.gz |
Updated information building egcs' shared libraries with an example and
emphasized the fact the `--enable-shared' config option in not an egcs
run-time option.
Diffstat (limited to 'ACE-INSTALL.html')
-rw-r--r-- | ACE-INSTALL.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/ACE-INSTALL.html b/ACE-INSTALL.html index e0c5c2be027..2f0caa9de23 100644 --- a/ACE-INSTALL.html +++ b/ACE-INSTALL.html @@ -674,9 +674,16 @@ If you use the GNU GCC g++ compiler please note the following: and 105490-07.<p> If you need or want to use egcs' shared libraries, build it - with the <code>--enable-shared</code> egcs config option. Be - sure to set your <code>LD_LIBRARY_PATH</code> environment variable, - if necessary, to pick up those shared libraries.<p> + with the <code>--enable-shared</code> egcs config option. The + <code>--enable-shared</code> option is <strong>not</strong> an + egcs run-time option. Build egcs in a way similar to the + following example: + <pre><code> + $ ./configure --enable-shared + $ make bootstrap + </code></pre> + Be sure to set your <code>LD_LIBRARY_PATH</code> environment + variable, if necessary, to pick up those shared libraries.<p> <li>On DEC Alpha, egcs through version 1.03a, at least, may fail to build ACE if debugging (-g) is enabled. The fix is to |