diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 18:04:26 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-06-06 18:04:26 +0000 |
commit | 43c512bd100fc56cded7365d97d3d28551689b2c (patch) | |
tree | 09a7afcbb2851df2cac389a406a570414a0f7854 /ACE-INSTALL.html | |
parent | 4be1f1449b31f66230f43ea737ee41eb73e223b7 (diff) | |
download | ATCD-43c512bd100fc56cded7365d97d3d28551689b2c.tar.gz |
Tue Jun 6 12:39:23 2000 Phil Mesnier <mesnier_p@ociweb.com>
Diffstat (limited to 'ACE-INSTALL.html')
-rw-r--r-- | ACE-INSTALL.html | 43 |
1 files changed, 40 insertions, 3 deletions
diff --git a/ACE-INSTALL.html b/ACE-INSTALL.html index 84b1640bbab..746d4c3e6ef 100644 --- a/ACE-INSTALL.html +++ b/ACE-INSTALL.html @@ -59,7 +59,8 @@ an enhancement, then use our <td><b>Fully supported, i.e., continually tested and used daily</b></td> <td>Solaris 2.5, 2.6, and 7, Windows NT 4.0 (MSVC++ 5.0, and 6.0), Linux/Intel, Linux/Alpha, VxWorks, LynxOS, Digital UNIX 4.0 and 5.0, - HP/UX 10.x and 11.x, AIX 4.x, IRIX 6.x, and QNX Neutrino 2.0 + HP/UX 10.x and 11.x, AIX 4.x, IRIX 6.x, UnixWare 7.1.0 and QNX + Neutrino 2.0 </td> </tr> <tr valign=top bgcolor="#AFAFAF"> @@ -71,8 +72,7 @@ an enhancement, then use our <tr valign=top> <td><b>Partially supported, i.e., infrequently tested</b></td> <td> Windows NT (Borland C++ Builder 4.0 and IBM VisualAge C++), - Windows CE, Tandem, SCO, UnixWare, SunOS 4.x, FreeBSD, NetBSD, - Linux/PPC. + Windows CE, Tandem, SCO, SunOS 4.x, FreeBSD, NetBSD, Linux/PPC. </td> </tr> <tr valign=top bgcolor="#AFAFAF"> @@ -462,6 +462,43 @@ make: *** [libACE.so] Error 8 HREF="mailto:gpai@voicetek.com">gpai@voicetek.com</A>> subsequently did the port for version 2.1.2, also with g++.<P> + Phil Mesnier <<A HREF="mailto:mesnier_p@ociweb.com"> + mesnier_p@ociweb.com</A>> updated the port to support + UnixWare 7.1.0, with help from Michael Meissnitzer + <<A HREF="mailto:michael.meissnitzer@siemens.at"> + michael.meissnitzer@siemens.at</A>>, Christian Klepp < + <A HREF="mailto:christian.klepp@siemens.at">christian.klepp@siemens.at + </A>> and Engelbert Staller <<A HREF="engelbert.staller@siemens.at"> + engelbert.staller@siemens.at</A>> + Building ACE (and TAO) on Unixware 7.1.0 requires a very specific + g++ build environment. In particular, you must build and install + g++ 2.95.2, along with binutils 2.9.1. The order (and the declaration + of configuration) is extremely important. Using the gcc compiler + provided on the Skunkware CD on a pentium system, here is the recipe + I used to build a working environment (as root):<br> +<pre> + mkdir /usr/local/newgnu +< ftp and untar binutils-2.9.1 > +< ftp and untar gcc-2.95.2 > + mkdir -p build/binutils build/gcc + cd build/binutils + ../../binutils-2.9.1/configure i386-sco-sysv4 + gmake # takes a long time + gmake install # this creates /usr/local/i386-sco-sysv4/... + mkdir /usr/local/i486-pc-sysv5/bin + cd /usr/local/i486-pc-sysv5/bin + for a in /usr/local/i386-sco-sysv4/bin/*; do ln -s $a .; done + #links all the newly installed utilities + + cd /usr/local/newgnu/build/gcc + ../../gcc-2.95.2/configure --with-gnu-as --with-gnu-ld + gmake bootstrap # takes a long time + gmake install + mkdir /usr/local/i586-UnixWare7.1.0-sysv5/bin + for a in /usr/local/i386-sco-sysv4/bin/*; do ln -s $a .; done +</pre> + Once done, ACE and TAO will successfully build and link.<p> + <LI><B>Chorus</B> <P> Wei Chiang <<A |