You can subscribe to this list here.
2001 |
Jan
|
Feb
(51) |
Mar
(85) |
Apr
(93) |
May
(55) |
Jun
(52) |
Jul
(36) |
Aug
(31) |
Sep
(62) |
Oct
(55) |
Nov
(10) |
Dec
(37) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(51) |
Feb
(86) |
Mar
(61) |
Apr
(83) |
May
(51) |
Jun
(35) |
Jul
(73) |
Aug
(70) |
Sep
(40) |
Oct
(46) |
Nov
(75) |
Dec
(26) |
2003 |
Jan
(36) |
Feb
(43) |
Mar
(27) |
Apr
(95) |
May
(43) |
Jun
(18) |
Jul
(9) |
Aug
(14) |
Sep
(27) |
Oct
(31) |
Nov
(33) |
Dec
(10) |
2004 |
Jan
(40) |
Feb
(19) |
Mar
(31) |
Apr
(8) |
May
(22) |
Jun
(45) |
Jul
(27) |
Aug
(38) |
Sep
(8) |
Oct
(26) |
Nov
(31) |
Dec
(20) |
2005 |
Jan
(9) |
Feb
(7) |
Mar
(16) |
Apr
(6) |
May
(10) |
Jun
(9) |
Jul
(1) |
Aug
(10) |
Sep
(2) |
Oct
(6) |
Nov
|
Dec
|
2006 |
Jan
(3) |
Feb
(10) |
Mar
(9) |
Apr
(11) |
May
(12) |
Jun
(15) |
Jul
(22) |
Aug
(9) |
Sep
(8) |
Oct
(13) |
Nov
(6) |
Dec
(7) |
2007 |
Jan
(8) |
Feb
(3) |
Mar
(8) |
Apr
(4) |
May
(3) |
Jun
(1) |
Jul
(16) |
Aug
(4) |
Sep
(1) |
Oct
(6) |
Nov
(3) |
Dec
(5) |
2008 |
Jan
(12) |
Feb
(9) |
Mar
(8) |
Apr
(3) |
May
(3) |
Jun
(3) |
Jul
(2) |
Aug
(2) |
Sep
(2) |
Oct
(16) |
Nov
(2) |
Dec
|
2009 |
Jan
(3) |
Feb
(1) |
Mar
(5) |
Apr
(2) |
May
(5) |
Jun
(16) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2010 |
Jan
(2) |
Feb
(2) |
Mar
(8) |
Apr
|
May
(5) |
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2011 |
Jan
(1) |
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jørn A. <Jor...@nt...> - 2008-07-16 22:40:20
|
The latest toolbox gcc 4.2.0 is configured at build time to use the native assembler and loader. AIX /usr/bin/as and /usr/bin/ld has a well defined interplay between compilation mode switches and the environment, as you would expect on a Unix system; switches overrides environment if set and the application looks into the environment if switches are not set. So is not the case with gcc on aix. Now, OBJECT_MODE=32 gcc -maix64 files... OBJECT_MODE=64 gcc -maix64 files... works as expected. However, OBJECT_MODE=64 gcc -maix32 files... compiles in 32-bit mode due to -maix32 but assembles and links in 64-bit mode due to OBJECT_MODE. This is because appropriate -a32 and -b32 gcc specs are missing, only maix64 specs are provided in the gcc spefile (dump with gcc -dumpspecs). Also, the relation with OBJECT_MODE should be documented in environment subsection of the info manual and gcc --target-help should not invoke the assembler. Best Regards --Jørn Amundsen |
From: Hans-Joachim E. <Han...@eu...> - 2008-06-30 15:46:56
|
In the name of the MetaModul GmbH - http://www.metamodul.com i would like to announce the start of the projec: OpenAIX http://www.metamodul.com/10.html The main reason is to give developer an open andf free access to an AIX 5.3 and 6.1 system and create on the long run a autobuild system for AIX/GNU software. Help is welcome ( mailto: se...@me... ) thx Hajo |
From: Reza A. <ar...@au...> - 2008-06-30 15:34:59
|
Hi Vivek, On 26 Jun 2008, 03:19AM CDT, Vivek Katakam <viv...@gm...> wrote: > It is installable on AIX6.1 .As I am in need of installing Ncurses on > AIX6.1, I could not find any precompiled binary or rpm. In most cases, AIX is completely backward compatible. If you build software on AIX 5.2 (as we do for the Toolbox), it will run on AIX 5.3, 6.1, etc. There are very rare exceptions, listed at <http://www-03.ibm.com/systems/p/os/aix/compatibility/conditions/index.html>. If we have found any of thes exceptions apply to software in the Toolbox, we build multiple packages per OS level. There is only one ncurses package in the Toolbox, and since it was built on AIX 4.3, you can install it on your 6.1 machine. -- Reza Arbab ar...@au... |
From: Vivek K. <viv...@gm...> - 2008-06-26 08:19:01
|
Hi All, I am in need of installing ncurses software. I searched internet and found AIX5.1 rpm, but this is for AIX5.2. It is installable on AIX6.1 .As I am in need of installing Ncurses on AIX6.1, I could not find any precompiled binary or rpm. Please let me know whether this installation gives problems, when natively building software on this platform. Or should I install from the sources for AIX6.1 or where can i get the binaries if I need them. Thanks and Regards, Vivek |
From: Reza A. <ar...@au...> - 2008-05-28 18:28:37
|
Hello, On 28 May 2008, 02:21AM CDT, Hemanth Kumar <hk...@in...> wrote: > https://secure.site.ibm.com/: Unsupported scheme. You need the wget package built with ssl support. You can find it via the link labeled "AIX Toolbox Cryptographic Content" on the main download page, or directly here: <http://www.ibm.com/services/forms/preLogin.do?source=aixtbx> -- Reza Arbab ar...@au... |
From: Hemanth K. <hk...@in...> - 2008-05-28 07:22:45
|
Hi, I have referred to the readme at this site - ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/README.txt and the respective site contains a very old version of wget for AIX. I am in need of a latest version for the following reason. I request you to kindly help me sort out this issue: I have installed wget version 1.9.1 on my AIX box and it works fine for an ordinary http site. Whereas, it does not work for a https (secure) sites. Here's the explanation of the issues being faced currently: With a http site, the wget works perfectly fine. $ wget http://www-128.ibm.com/developerworks/java/jdk/aix/142/sdk14.fixes.html --12:23:59-- http://www-128.ibm.com/developerworks/java/jdk/aix/142/sdk14.fixes.html => `sdk14.fixes.html.1' Resolving www-128.ibm.com... 129.33.13.208 Connecting to www-128.ibm.com[129.33.13.208]:80... connected. HTTP request sent, awaiting response... 200 OK Length: 43,591 [text/html] 100%[=================================================================================>] 43,591 10.65K/s ETA 00:00 12:24:04 (10.64 KB/s) - `sdk14.fixes.html.1' saved [43591/43591] Whereas, with a https, it throws an error as follows $ wget http://secure.site.ibm.com --12:26:02-- http://secure.site.ibm.com/ => `index.html.1' Resolving secure.site.ibm.com... 9.20.999.99 Connecting to secure.site.ibm.com[9.20.999.99]:80... connected. HTTP request sent, awaiting response... 302 Found Location: https://secure.site.ibm.com/ [following] https://secure.site.ibm.com/: Unsupported scheme. (Please note: I have used a dummy site called secure.site.ibm.com (9.20.999.99) here for the purpose of explanation of the problem.) For this, command line, I have also ensured that I have mentioned the correct username and password in the .wgetrc file at the home directory. Yet I get the above error! Thanks again, Hemanth email: hk...@in... |
From: Reza A. <ar...@au...> - 2008-05-02 19:37:44
|
Hi Ahmed, On 14 Apr 2008, 03:35AM CDT, Ahmed Karoumi <ahm...@fr...> wrote: > Since March 28, 2008 the last binary available on the main site SUDO is > sudo 1.6.9p15 The new version of sudo is available here: <ftp://ftp.software.ibm.com/aix/freeSoftware/aixtoolbox/RPMS/ppc/sudo/sudo-1.6.9p15-1.aix5.2.ppc.rpm> It was built with the options --with-ldap and --with-noexec. This means that it has a new dependency on the openldap RPM. -- Reza Arbab ar...@au... |
From: Ahmed K. <ahm...@fr...> - 2008-04-14 08:35:41
|
Hello, On AIX Toolbox, the package SUDO available for AIX is at the version 1.6.7p5 ( http://www-03.ibm.com/systems/p/os/aix/linux/toolbox/download.html). To be compliance, the last version with security patchs is 1.6.9 so on 1.6.7 the security vulnerabilities are not uptodate, as we can see on this url http://www.sudo.ws/sudo/security.html Since March 28, 2008 the last binary available on the main site SUDO is sudo 1.6.9p15 >From your staff is it possible to have compiled RPM SUDO for AIX 5.1 and above with: 1. the last SUDO version, security patchs applied each time that it's published on the main site (without support LDAP) 2. support LDAP, by using option "--with-ldap" and "--with-noexec" Thanks for your help. Cordialement / Best Regards, Ahmed KAROUMI IT Specialist Security | AIX/UNIX | IBM Tivoli Directory Server (ITDS)/LDAP Phone : +33 1 5884 0455 (T/L: 37 0455) France SAS project Team : SA...@fr... SAS WIKI : https://w3.webahead.ibm.com/w3ki/display/ITDFR/SAS+Project ---- Sauf indication contraire ci-dessus:/ Unless stated otherwise above: Compagnie IBM France Siège Social : Tour Descartes, 2, avenue Gambetta, La Défense 5, 92400 Courbevoie RCS Nanterre 552 118 465 Forme Sociale : S.A.S. Capital Social : 542.737.118 ? SIREN/SIRET : 552 118 465 02430 |
From: Richard D. <Ric...@LA...> - 2008-04-07 18:00:16
|
Does this work? http://prdownloads.sourceforge.net/tcl/tcl8.4.7-src.tar.gz It seems to work . . . --Rich Dupuy UNIX System Administrator IT Technical Support Supervisor State of Louisiana -Division of Administration -Office of Computing Services -----Original Message----- From: aix...@li... [mailto:aix...@li...] On Behalf Of Hans-Joachim Ehlers Sent: Monday, April 07, 2008 8:36 AM To: aix...@li... Subject: [tbox-l] Problem: tix can not be build on AIX Hi, i try to build tix ( tix.sourceforge.net ) and during the configure i get ... checking for Tcl private include files... configure: error: Cannot find private header tclInt.h in /opt/freeware/src/packages/BUILD/tcltk-8.4.7/tcl8.4.7 On the newsgroup comp.lang.tcl i have got the following hint: ... You need the private headers of Tcl and Tk to build Tix. Install them with make install-private-headers when installing Tcl and Tk ... Siince i can not find the src code for 8.4.7 ( only for 8.4.18) could somebody provide me with the private header file make install-private-headers - from a tcl and tk build of version 8.4.7 tia Hajo ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Register now and save $200. Hurry, offer ends at 11:59 p.m., Monday, April 7! Use priority code J8TLD2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ aixtoolbox-list mailing list aix...@li... https://lists.sourceforge.net/lists/listinfo/aixtoolbox-list |
From: Hans-Joachim E. <Han...@eu...> - 2008-04-07 13:36:53
|
Hi, i try to build tix ( tix.sourceforge.net ) and during the configure i get ... checking for Tcl private include files... configure: error: Cannot find private header tclInt.h in /opt/freeware/src/packages/BUILD/tcltk-8.4.7/tcl8.4.7 On the newsgroup comp.lang.tcl i have got the following hint: ... You need the private headers of Tcl and Tk to build Tix. Install them with make install-private-headers when installing Tcl and Tk ... Siince i can not find the src code for 8.4.7 ( only for 8.4.18) could somebody provide me with the private header file make install-private-headers - from a tcl and tk build of version 8.4.7 tia Hajo |
From: <phi...@ar...> - 2008-03-25 15:11:04
|
hi, currently a new sudo version (1.7b3) has been announced, which includes a fix for the ulimit topic on aix. now, a "sudo -u <user> <command>" should use the ulimit-settings for the target user, i tried to compile it under aix5300-06-05-0806, but it is still now working for me. regards ---------------- Disclaimer: Diese Nachricht dient ausschließlich zu Informationszwecken und ist nur für den Gebrauch des angesprochenen Adressaten bestimmt. This message is only for informational purposes and is intended solely for the use of the addressee. ---------------- |
From: Hans-Joachim E. <Han...@eu...> - 2008-03-13 18:41:54
|
Take a look at openssh from Darren Tucker http://www.zip.com.au/~dtucker/openssh/ hth Hajo >>> Helio Paixao <hel...@jm...> 13/03/2008 19:02 >>> Hi, how can I get obtain the package openssh-server-3.6.1p2-1.aix4.3.ppc.rpm? I tried on http://www6.software.ibm.com/dl/aixtbx/aixtbx-p but there is no more link to download this package. |
From: Helio P. <hel...@jm...> - 2008-03-13 18:03:15
|
Hi, how can I get obtain the package openssh-server-3.6.1p2-1.aix4.3.ppc.rpm? I tried on http://www6.software.ibm.com/dl/aixtbx/aixtbx-p but there is no more link to download this package. I have tried to use the package available on www.bullfreeware.com but some options does not work fine. I have version openssh-server-2.9.9p2-6 (available on aix toolbox cd) that works 100% but has a lot of vulnerabilities. Thanks, -- Hélio Paixão JMACEDO S/A TI - Infra Estrutura 55 85 4006-6044 |
From: Reza A. <ar...@au...> - 2008-03-13 14:33:32
|
Hi Uwe, On 13 Mar 2008, 04:32AM CDT, Uwe Nestler <NES...@de...> wrote: > libcrypto.a(libcrypto.so.0.9.7) is needed by wget-1.9.1-1ssl > libssl.a(libssl.so.0.9.7) is needed by wget-1.9.1-1ssl Please update to wget-1.9.1-2ssl, which is built against the new OpenSSL. -- Reza Arbab ar...@au... |
From: Eun-Suk K. <es...@kr...> - 2008-03-12 19:00:54
|
I will be out of the office starting 2008-03-10 and will not return until 2008-03-17. |
From: Christoph P. <pos...@de...> - 2008-03-12 15:45:19
|
On Wednesday 12 March 2008 10:32, Shlomy Marom wrote: > Hi, > > I'm using the rpm (RPM version 3.0.5) toolbox on AIX 5.3. > > I have a problem that must be solved before releasing the package I'm > building. > > > The %files section contains some directories. > > After installation, a user can put some files in these directories. > > When he tries to uninstall the package (rpm -e my_pkg) he gets the > following warning for all the non-empty directories that were included > in the %files section: > > "cannot remove /bla/blabla/ - directory not empty" > > In Linux I didn't get this kind of warnings. > > Is there any way to specify the RPM to ignore (or not to display) such > warnings?! Shlomy, I am afraid, this "works as designed". There are not too many options with "rpm -e". I am not aware of any option that suppresses messages generated by AIX commands (such as rmdir). One way to solve the problem would be to set up a %preun section in your spec file. This %preun script would purge unwanted files from the install directory. Then the directory /bla/blabla/ is empty and the message goes away. Be careful, however, not to scratch too many files. You get new messages when RPM tries to uninstall files that are no longer there. The script could do an "ls -l" on a file that the user can never touch, and grep (or awk) for the owner of the file (say it is root). The you do something like "find /bla/blabla -type f ! -user root -exec rm -f {} \;". This should erase all files owned by some user other than the userid that did the install. Please refer to max-rpm and the man pages of find for any details. -- Mit freundlichen Gruessen/Best Regards Dr. Christoph Pospiech High Performance & Parallel Computing Advanced Computing Technology Center Phone +49-351-86269826, eMail: pos...@de... Mobile +49-171 765 5871 IBM Deutschland GmbH Vorsitzender des Aufsichtsrats: Hans Ulrich Maerki Geschäftsführung: Martin Jetter (Vorsitzender), Christian Diedrich, Michael Diemer, Thomas Fell, Christoph Grandpierre, Matthias Hartmann Sitz der Gesellschaft: Stuttgart Registergericht: Amtsgericht Stuttgart, HRB 14562 WEEE-Reg.-Nr. DE 99369940 |
From: Shlomy M. <sh...@Cy...> - 2008-03-12 09:32:35
|
Hi, I'm using the rpm (RPM version 3.0.5) toolbox on AIX 5.3. I have a problem that must be solved before releasing the package I'm building. The %files section contains some directories. After installation, a user can put some files in these directories. When he tries to uninstall the package (rpm -e my_pkg) he gets the following warning for all the non-empty directories that were included in the %files section: "cannot remove /bla/blabla/ - directory not empty" In Linux I didn't get this kind of warnings. Is there any way to specify the RPM to ignore (or not to display) such warnings?! Tx in advanced, Shlom |
From: Scott F. <SFl...@ab...> - 2008-02-07 13:58:19
|
Hi! I'm wondering if anyone of you know of a mailing list (subscription) or forum that would deal with variety of compiler errors? So I would be able to use that service for help because this mailing list is the wrong one for one of my issue here because this machine is not using the AIX toolbox. This machine is using some of the Bull Freeware components. This one problem I could not figure out is the libtool error when compiling a source code. The GCC said it couldn't find the "libgcc_s" or "gcclib_s". Seem that LibTool doesn't know what to do with static files and shared files. So, that's why I wonder if anyone of you know of a mailing list (subscription) or forum that would point me to the right direction. Thanks, Scott |
From: Hans-Joachim E. <Han...@eu...> - 2008-02-07 08:34:29
|
hi dave, i have got message from Rainer Tammer, he pointed out that Michael Perzll build a gcc 4.2.2 you can download it from http://www.perzl.org/ http://www.perzl.org/aix/index.php?n=Main.Gcc hth hajo >>> "Dave" <da...@ge...> 07/02/2008 02:43 >>> I am having a lot of compliation failures (see log below) when attempting to compile using the version 4.0.0 g++ compiler provided with the AIX Linux Toolbox. On a previous exchange related to another problem there was a comment that the version of libstdc++ provided for AIX 5.3 was broken. I am wondering whether that relates to the problem that I am seeing below? If so, would it make sense to go back and install the Toolbox for AIX 5.2? At this point I am beyond the limits of my knowledge in this area, and so any help would be greatly appreciated. Here is the log from the failed compilation: [hpgenus@Q4DE8SCOABQ](/home/hpgenus/dtblaze/Gelserver/wcopy/parse)$ gmake RELEASE_VERSION=1 g++ -v -g -O4 -Wall -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -fno-rtti -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER -c -o parse.o parse.cpp Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 Thread model: aix gcc version 4.0.0 /opt/freeware/libexec/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/cc1plus -quiet -v -D_ALL_SOURCE -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER parse.cpp -quiet -dumpbase parse.cpp -auxbase-strip parse.o -g -O4 -Wall -version -fno-rtti -o /tmp//ccybYUmc.s ignoring nonexistent directory "/usr/local/include" ignoring nonexistent directory "/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../../../powerpc-ibm- aix5.3.0.0/include" #include "..." search starts here: #include <...> search starts here: /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++ /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/powerpc-ibm-a ix5.3.0.0 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/backward /opt/freeware/include /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include /usr/include End of search list. GNU C++ version 4.0.0 (powerpc-ibm-aix5.3.0.0) compiled by GNU C version 4.0.0. GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:168: error: '::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:169: error: '::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:171: error: '::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:178: error: '__gnu_cxx::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:179: error: '__gnu_cxx::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:181: error: '__gnu_cxx::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:166: error: '::vfwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:170: error: '::vswscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:174: error: '::vwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:191: error: '::wcstof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:249: error: '::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:258: error: '::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:259: error: '::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:265: error: '__gnu_cxx::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:266: error: '__gnu_cxx::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:267: error: '__gnu_cxx::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:159: error: '::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:165: error: '::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:175: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:179: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:192: error: '::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:193: error: '::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:194: error: '::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:196: error: '::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:197: error: '::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:203: error: '__gnu_cxx::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:205: error: '__gnu_cxx::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:209: error: '__gnu_cxx::div' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:210: error: '__gnu_cxx::lldiv' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:212: error: '__gnu_cxx::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:213: error: '__gnu_cxx::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:214: error: '__gnu_cxx::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:215: error: '__gnu_cxx::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:216: error: '__gnu_cxx::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwctype:89: error: '::iswblank' has not been declared parse.cpp: In function 'IBOOLEAN parseRecoveryInfo(Session*)': parse.cpp:2261: error: 'atoll' was not declared in this scope parse.cpp:2284: error: 'atoll' was not declared in this scope gmake: *** [parse.o] Error 1 |
From: Dave <da...@ge...> - 2008-02-07 03:13:13
|
I managed to resolve the problem by removing these two compiler options: -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L. I didn't bother to spend time figuring out which one caused the problem. _____ From: Dave [mailto:da...@ge...] Sent: Wednesday, February 06, 2008 5:43 PM To: 'aix...@li...' Subject: More compile problems with g++ on AIX 5.3 I am having a lot of compliation failures (see log below) when attempting to compile using the version 4.0.0 g++ compiler provided with the AIX Linux Toolbox. On a previous exchange related to another problem there was a comment that the version of libstdc++ provided for AIX 5.3 was broken. I am wondering whether that relates to the problem that I am seeing below? If so, would it make sense to go back and install the Toolbox for AIX 5.2? At this point I am beyond the limits of my knowledge in this area, and so any help would be greatly appreciated. Here is the log from the failed compilation: [hpgenus@Q4DE8SCOABQ](/home/hpgenus/dtblaze/Gelserver/wcopy/parse)$ gmake RELEASE_VERSION=1 g++ -v -g -O4 -Wall -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -fno-rtti -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER -c -o parse.o parse.cpp Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 Thread model: aix gcc version 4.0.0 /opt/freeware/libexec/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/cc1plus -quiet -v -D_ALL_SOURCE -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER parse.cpp -quiet -dumpbase parse.cpp -auxbase-strip parse.o -g -O4 -Wall -version -fno-rtti -o /tmp//ccybYUmc.s ignoring nonexistent directory "/usr/local/include" ignoring nonexistent directory "/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../../../powerpc-ibm- aix5.3.0.0/include" #include "..." search starts here: #include <...> search starts here: /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++ /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/powerpc-ibm-a ix5.3.0.0 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/backward /opt/freeware/include /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include /usr/include End of search list. GNU C++ version 4.0.0 (powerpc-ibm-aix5.3.0.0) compiled by GNU C version 4.0.0. GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:168: error: '::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:169: error: '::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:171: error: '::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:178: error: '__gnu_cxx::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:179: error: '__gnu_cxx::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:181: error: '__gnu_cxx::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:166: error: '::vfwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:170: error: '::vswscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:174: error: '::vwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:191: error: '::wcstof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:249: error: '::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:258: error: '::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:259: error: '::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:265: error: '__gnu_cxx::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:266: error: '__gnu_cxx::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:267: error: '__gnu_cxx::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:159: error: '::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:165: error: '::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:175: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:179: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:192: error: '::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:193: error: '::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:194: error: '::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:196: error: '::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:197: error: '::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:203: error: '__gnu_cxx::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:205: error: '__gnu_cxx::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:209: error: '__gnu_cxx::div' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:210: error: '__gnu_cxx::lldiv' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:212: error: '__gnu_cxx::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:213: error: '__gnu_cxx::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:214: error: '__gnu_cxx::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:215: error: '__gnu_cxx::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:216: error: '__gnu_cxx::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwctype:89: error: '::iswblank' has not been declared parse.cpp: In function 'IBOOLEAN parseRecoveryInfo(Session*)': parse.cpp:2261: error: 'atoll' was not declared in this scope parse.cpp:2284: error: 'atoll' was not declared in this scope gmake: *** [parse.o] Error 1 |
From: Dave <da...@ge...> - 2008-02-07 01:43:23
|
I am having a lot of compliation failures (see log below) when attempting to compile using the version 4.0.0 g++ compiler provided with the AIX Linux Toolbox. On a previous exchange related to another problem there was a comment that the version of libstdc++ provided for AIX 5.3 was broken. I am wondering whether that relates to the problem that I am seeing below? If so, would it make sense to go back and install the Toolbox for AIX 5.2? At this point I am beyond the limits of my knowledge in this area, and so any help would be greatly appreciated. Here is the log from the failed compilation: [hpgenus@Q4DE8SCOABQ](/home/hpgenus/dtblaze/Gelserver/wcopy/parse)$ gmake RELEASE_VERSION=1 g++ -v -g -O4 -Wall -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -fno-rtti -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER -c -o parse.o parse.cpp Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 Thread model: aix gcc version 4.0.0 /opt/freeware/libexec/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/cc1plus -quiet -v -D_ALL_SOURCE -D_LARGEFILE_SOURCE -D_POSIX_C_SOURCE=199506L -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D_ADD_STATS_CODE -DXML_USE_INMEM_MESSAGELOADER parse.cpp -quiet -dumpbase parse.cpp -auxbase-strip parse.o -g -O4 -Wall -version -fno-rtti -o /tmp//ccybYUmc.s ignoring nonexistent directory "/usr/local/include" ignoring nonexistent directory "/opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/../../../../powerpc-ibm- aix5.3.0.0/include" #include "..." search starts here: #include <...> search starts here: /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++ /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/powerpc-ibm-a ix5.3.0.0 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/backward /opt/freeware/include /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include /usr/include End of search list. GNU C++ version 4.0.0 (powerpc-ibm-aix5.3.0.0) compiled by GNU C version 4.0.0. GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:168: error: '::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:169: error: '::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:171: error: '::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:178: error: '__gnu_cxx::vfscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:179: error: '__gnu_cxx::vscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdio:181: error: '__gnu_cxx::vsscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:166: error: '::vfwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:170: error: '::vswscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:174: error: '::vwscanf' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:191: error: '::wcstof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:249: error: '::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:258: error: '::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:259: error: '::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:265: error: '__gnu_cxx::wcstold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:266: error: '__gnu_cxx::wcstoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwchar:267: error: '__gnu_cxx::wcstoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:159: error: '::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:165: error: '::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:175: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:179: error: 'lldiv_t' does not name a type /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:192: error: '::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:193: error: '::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:194: error: '::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:196: error: '::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:197: error: '::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:203: error: '__gnu_cxx::lldiv_t' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:205: error: '__gnu_cxx::_Exit' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:209: error: '__gnu_cxx::div' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:210: error: '__gnu_cxx::lldiv' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:212: error: '__gnu_cxx::atoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:213: error: '__gnu_cxx::strtof' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:214: error: '__gnu_cxx::strtoll' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:215: error: '__gnu_cxx::strtoull' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cstdlib:216: error: '__gnu_cxx::strtold' has not been declared /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/include/c++/cwctype:89: error: '::iswblank' has not been declared parse.cpp: In function 'IBOOLEAN parseRecoveryInfo(Session*)': parse.cpp:2261: error: 'atoll' was not declared in this scope parse.cpp:2284: error: 'atoll' was not declared in this scope gmake: *** [parse.o] Error 1 |
From: Bryan H. <hb...@us...> - 2008-02-06 18:37:13
|
>AFAIK is the GNU C++ Compiler v4.0.0 - meaning the stdlibc++ - from the Toolbox is broken. Couldn't it also be that stdlibc++ is fine and the 'gcc' program just isn't including it in the link? 'gcc --verbose hw.cpp' would tell. A manual 'ld' would distinguish as well. I don't know about these things because I normally use a custom configuration, but aren't Gcc users normally supposed to use 'g++' instead of 'gcc' to compile C++, just so they can get the C++ library in the search paths? In any case, I don't think the xerces-c++ problem is related to this, because its only undefined symbol is 'vtable', and that particular undefined symbol error is well known for being obtuse. I can never remember, but the problem is something like you declared a virtual method but didn't define it. And Jupiter is in retrograde. |
From: Hans-Joachim E. <Han...@eu...> - 2008-02-06 09:16:52
|
AFAIK is the GNU C++ Compiler v4.0.0 - meaning the stdlibc++ - from the Toolbox broken. Example: !$ cat hw.cpp #include <iostream> int main() { std::cout << "Hello, world!" << std::endl; return 0; } $ gcc -v Using built-in specs. Target: powerpc-ibm-aix5.3.0.0 Configured with: ../configure --with-as=/usr/bin/as --with-ld=/usr/bin/ld --disable-nls --enable-languages=c,c++ --prefix=/opt/freeware --enable-threads --enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.3.0.0 Thread model: aix gcc version 4.0.0 !$ gcc hw.cpp ld: 0711-317 ERROR: Undefined symbol: std::cout ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*) ld: 0711-317 ERROR: Undefined symbol: std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&) ld: 0711-317 ERROR: Undefined symbol: .std::basic_ostream<char, std::char_traits<char> >::operator<<(std::basic_ostream<char, std::char_traits<char> >& (*)(std::basic_ostream<char, std::char_traits<char> >&)) ld: 0711-317 ERROR: Undefined symbol: .std::ios_base::Init::Init() ld: 0711-317 ERROR: Undefined symbol: .std::ios_base::Init::~Init() ld: 0711-317 ERROR: Undefined symbol: __gxx_personality_v0 ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. collect2: ld returned 8 exit status regards Hajo >>> "Dave" <da...@ge...> 06/02/2008 03:26 >>> I am attempting to build Xerces-C++ 2.8.0 on AIX using the gcc and g++ compilers provided with the AIX Toolbox for Linux, and I am getting errors such as ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__class_type_info Can anybody offer any suggestions? Below is the full error info: Building /home/hpgenus/dtblaze/xerces/xerces28/xerces-c-src_2_8_0/lib/libxerces-c28.0 .a g++ -DAIX -shared -o /home/hpgenus/dtblaze/xerces/xerces28/xerces-c-src_2_8_0/lib/libxerces-c28.0 .a AIX/AIXPlatformUtils.o AIX/ASCIIRangeFactory.o AIX/AbstractDOMParser.o AIX/AbstractNumericFacetValidator.o AIX/AbstractNumericValidator.o AIX/AbstractStringValidator.o AIX/AllContentModel.o AIX/AnySimpleTypeDatatypeValidator.o AIX/AnyURIDatatypeValidator.o AIX/AttrImpl.o AIX/AttrMapImpl.o AIX/AttrNSImpl.o AIX/BMPattern.o AIX/Base64.o AIX/Base64BinaryDatatypeValidator.o AIX/BinFileInputStream.o AIX/BinFileOutputStream.o AIX/BinInputStream.o AIX/BinMemInputStream.o AIX/BinMemOutputStream.o AIX/BinOutputStream.o AIX/BitSet.o AIX/BlockRangeFactory.o AIX/BooleanDatatypeValidator.o AIX/CDATASectionImpl.o AIX/CMAny.o AIX/CMBinaryOp.o AIX/CMUnaryOp.o AIX/CharToken.o AIX/CharacterDataImpl.o AIX/ChildNode.o AIX/ClosureToken.o AIX/CommentImpl.o AIX/ComplexTypeInfo.o AIX/ConcatToken.o AIX/ConditionToken.o AIX/ContentLeafNameTypeVector.o AIX/ContentSpecNode.o AIX/DFAContentModel.o AIX/DGXMLScanner.o AIX/DOMAttrImpl.o AIX/DOMAttrMapImpl.o AIX/DOMAttrNSImpl.o AIX/DOMBuilderImpl.o AIX/DOMCDATASectionImpl.o AIX/DOMCharacterDataImpl.o AIX/DOMChildNode.o AIX/DOMCommentImpl.o AIX/DOMConfigurationImpl.o AIX/DOMDeepNodeListImpl.o AIX/DOMDocumentFragmentImpl.o AIX/DOMDocumentImpl.o AIX/DOMDocumentTypeImpl.o AIX/DOMElementImpl.o AIX/DOMElementNSImpl.o AIX/DOMEntityImpl.o AIX/DOMEntityReferenceImpl.o AIX/DOMErrorImpl.o AIX/DOMException.o AIX/DOMImplementationImpl.o AIX/DOMImplementationRegistry.o AIX/DOMLocatorImpl.o AIX/DOMNamedNodeMapImpl.o AIX/DOMNodeIDMap.o AIX/DOMNodeImpl.o AIX/DOMNodeIteratorImpl.o AIX/DOMNodeListImpl.o AIX/DOMNodeVector.o AIX/DOMNormalizer.o AIX/DOMNotationImpl.o AIX/DOMParentNode.o AIX/DOMParser.o AIX/DOMProcessingInstructionImpl.o AIX/DOMRangeException.o AIX/DOMRangeImpl.o AIX/DOMString.o AIX/DOMStringPool.o AIX/DOMTextImpl.o AIX/DOMTreeWalkerImpl.o AIX/DOMTypeInfoImpl.o AIX/DOMWriterImpl.o AIX/DOMXPathException.o AIX/DOM_Attr.o AIX/DOM_CDATASection.o AIX/DOM_CharacterData.o AIX/DOM_Comment.o AIX/DOM_DOMException.o AIX/DOM_DOMImplementation.o AIX/DOM_Document.o AIX/DOM_DocumentFragment.o AIX/DOM_DocumentType.o AIX/DOM_Element.o AIX/DOM_Entity.o AIX/DOM_EntityReference.o AIX/DOM_NamedNodeMap.o AIX/DOM_Node.o AIX/DOM_NodeFilter.o AIX/DOM_NodeIterator.o AIX/DOM_NodeList.o AIX/DOM_Notation.o AIX/DOM_ProcessingInstruction.o AIX/DOM_Range.o AIX/DOM_RangeException.o AIX/DOM_Text.o AIX/DOM_TreeWalker.o AIX/DOM_XMLDecl.o AIX/DStringPool.o AIX/DTDAttDef.o AIX/DTDAttDefList.o AIX/DTDElementDecl.o AIX/DTDEntityDecl.o AIX/DTDGrammar.o AIX/DTDScanner.o AIX/DTDValidator.o AIX/DatatypeValidator.o AIX/DatatypeValidatorFactory.o AIX/DateDatatypeValidator.o AIX/DateTimeDatatypeValidator.o AIX/DateTimeValidator.o AIX/DayDatatypeValidator.o AIX/DecimalDatatypeValidator.o AIX/DeepNodeListImpl.o AIX/DefaultPanicHandler.o AIX/DocumentFragmentImpl.o AIX/DocumentImpl.o AIX/DocumentTypeImpl.o AIX/DomMemDebug.o AIX/DoubleDatatypeValidator.o AIX/Dummy.o AIX/DurationDatatypeValidator.o AIX/ENTITYDatatypeValidator.o AIX/ElemStack.o AIX/ElementDefinitionImpl.o AIX/ElementImpl.o AIX/ElementNSImpl.o AIX/EncodingValidator.o AIX/EntityImpl.o AIX/EntityReferenceImpl.o AIX/FieldActivator.o AIX/FieldValueMap.o AIX/FloatDatatypeValidator.o AIX/GCCDefs.o AIX/GeneralAttributeCheck.o AIX/Grammar.o AIX/GrammarResolver.o AIX/HashPtr.o AIX/HashXMLCh.o AIX/HeaderDummy.o AIX/HexBin.o AIX/HexBinaryDatatypeValidator.o AIX/IC_Field.o AIX/IC_Key.o AIX/IC_KeyRef.o AIX/IC_Selector.o AIX/IC_Unique.o AIX/IDDatatypeValidator.o AIX/IDREFDatatypeValidator.o AIX/IGXMLScanner.o AIX/IGXMLScanner2.o AIX/IconvTransService.o AIX/IdentityConstraint.o AIX/IdentityConstraintHandler.o AIX/InMemMsgLoader.o AIX/InputSource.o AIX/KVStringPair.o AIX/ListDatatypeValidator.o AIX/LocalFileFormatTarget.o AIX/LocalFileInputSource.o AIX/Match.o AIX/MemBufFormatTarget.o AIX/MemBufInputSource.o AIX/MemoryManagerArrayImpl.o AIX/MemoryManagerImpl.o AIX/MixedContentModel.o AIX/ModifierToken.o AIX/MonthDatatypeValidator.o AIX/MonthDayDatatypeValidator.o AIX/Mutexes.o AIX/NCNameDatatypeValidator.o AIX/NOTATIONDatatypeValidator.o AIX/NameDatatypeValidator.o AIX/NamedNodeMapImpl.o AIX/NamespaceScope.o AIX/NodeIDMap.o AIX/NodeImpl.o AIX/NodeIteratorImpl.o AIX/NodeListImpl.o AIX/NodeVector.o AIX/NotationImpl.o AIX/Op.o AIX/OpFactory.o AIX/PSVIAttribute.o AIX/PSVIAttributeList.o AIX/PSVIElement.o AIX/PSVIItem.o AIX/PanicHandler.o AIX/ParenToken.o AIX/ParentNode.o AIX/ParserForXMLSchema.o AIX/PlatformUtils.o AIX/ProcessingInstructionImpl.o AIX/QName.o AIX/QNameDatatypeValidator.o AIX/RangeFactory.o AIX/RangeImpl.o AIX/RangeToken.o AIX/RangeTokenMap.o AIX/ReaderMgr.o AIX/RefCountedImpl.o AIX/RegularExpression.o AIX/RegxParser.o AIX/RegxUtil.o AIX/SAX2XMLFilterImpl.o AIX/SAX2XMLReaderImpl.o AIX/SAXException.o AIX/SAXParseException.o AIX/SAXParser.o AIX/SGXMLScanner.o AIX/SchemaAttDef.o AIX/SchemaAttDefList.o AIX/SchemaElementDecl.o AIX/SchemaGrammar.o AIX/SchemaInfo.o AIX/SchemaSymbols.o AIX/SchemaValidator.o AIX/SimpleContentModel.o AIX/SocketNetAccessor.o AIX/StdInInputSource.o AIX/StdOutFormatTarget.o AIX/StringDatatypeValidator.o AIX/StringPool.o AIX/StringToken.o AIX/SubstitutionGroupComparator.o AIX/SynchronizedStringPool.o AIX/TextImpl.o AIX/TimeDatatypeValidator.o AIX/Token.o AIX/TokenFactory.o AIX/TransService.o AIX/TraverseSchema.o AIX/TreeWalkerImpl.o AIX/URLInputSource.o AIX/UnicodeRangeFactory.o AIX/UnionDatatypeValidator.o AIX/UnionToken.o AIX/UnixHTTPURLInputStream.o AIX/ValidationContextImpl.o AIX/ValueStore.o AIX/ValueStoreCache.o AIX/VecAttrListImpl.o AIX/VecAttributesImpl.o AIX/WFXMLScanner.o AIX/Wrapper4DOMInputSource.o AIX/Wrapper4InputSource.o AIX/XML256TableTranscoder.o AIX/XML88591Transcoder.o AIX/XMLASCIITranscoder.o AIX/XMLAbstractDoubleFloat.o AIX/XMLAttDef.o AIX/XMLAttDefList.o AIX/XMLAttr.o AIX/XMLBigDecimal.o AIX/XMLBigInteger.o AIX/XMLBuffer.o AIX/XMLBufferMgr.o AIX/XMLCanRepGroup.o AIX/XMLChTranscoder.o AIX/XMLChar.o AIX/XMLContentModel.o AIX/XMLDTDDescription.o AIX/XMLDTDDescriptionImpl.o AIX/XMLDateTime.o AIX/XMLDeclImpl.o AIX/XMLDouble.o AIX/XMLEBCDICTranscoder.o AIX/XMLElementDecl.o AIX/XMLEntityDecl.o AIX/XMLException.o AIX/XMLFloat.o AIX/XMLFormatter.o AIX/XMLGrammarDescription.o AIX/XMLGrammarPoolImpl.o AIX/XMLIBM1047Transcoder.o AIX/XMLIBM1140Transcoder.o AIX/XMLInitializer.o AIX/XMLMsgLoader.o AIX/XMLNotationDecl.o AIX/XMLNumber.o AIX/XMLRangeFactory.o AIX/XMLReader.o AIX/XMLRecognizer.o AIX/XMLRefInfo.o AIX/XMLRegisterCleanup.o AIX/XMLScanner.o AIX/XMLScannerResolver.o AIX/XMLSchemaDescription.o AIX/XMLSchemaDescriptionImpl.o AIX/XMLString.o AIX/XMLStringTokenizer.o AIX/XMLUCSTranscoder.o AIX/XMLURL.o AIX/XMLUTF16Transcoder.o AIX/XMLUTF8Transcoder.o AIX/XMLUni.o AIX/XMLUniCharacter.o AIX/XMLUri.o AIX/XMLValidator.o AIX/XMLWin1252Transcoder.o AIX/XMemory.o AIX/XPathMatcher.o AIX/XPathMatcherStack.o AIX/XPathSymbols.o AIX/XProtoType.o AIX/XSAXMLScanner.o AIX/XSAnnotation.o AIX/XSAttributeDeclaration.o AIX/XSAttributeGroupDefinition.o AIX/XSAttributeUse.o AIX/XSComplexTypeDefinition.o AIX/XSDDOMParser.o AIX/XSDElementNSImpl.o AIX/XSDErrorReporter.o AIX/XSDLocator.o AIX/XSElementDeclaration.o AIX/XSFacet.o AIX/XSIDCDefinition.o AIX/XSModel.o AIX/XSModelGroup.o AIX/XSModelGroupDefinition.o AIX/XSMultiValueFacet.o AIX/XSNamespaceItem.o AIX/XSNotationDeclaration.o AIX/XSObject.o AIX/XSObjectFactory.o AIX/XSParticle.o AIX/XSSimpleTypeDefinition.o AIX/XSTypeDefinition.o AIX/XSValue.o AIX/XSWildcard.o AIX/XSerializeEngine.o AIX/XTemplateSerializer.o AIX/XUtil.o AIX/XercesAttGroupInfo.o AIX/XercesDOMParser.o AIX/XercesElementWildcard.o AIX/XercesGroupInfo.o AIX/XercesXPath.o AIX/YearDatatypeValidator.o AIX/YearMonthDatatypeValidator.o AIX/sax2Dummy.o -lpthreads -L/usr/lib -L/usr/local/lib ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__si_class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__vmi_class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__enum_type_info ld: 0711-317 ERROR: Undefined symbol: typeinfo for int ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. |
From: Dave <da...@ge...> - 2008-02-06 02:26:37
|
I am attempting to build Xerces-C++ 2.8.0 on AIX using the gcc and g++ compilers provided with the AIX Toolbox for Linux, and I am getting errors such as ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__class_type_info Can anybody offer any suggestions? Below is the full error info: Building /home/hpgenus/dtblaze/xerces/xerces28/xerces-c-src_2_8_0/lib/libxerces-c28.0 .a g++ -DAIX -shared -o /home/hpgenus/dtblaze/xerces/xerces28/xerces-c-src_2_8_0/lib/libxerces-c28.0 .a AIX/AIXPlatformUtils.o AIX/ASCIIRangeFactory.o AIX/AbstractDOMParser.o AIX/AbstractNumericFacetValidator.o AIX/AbstractNumericValidator.o AIX/AbstractStringValidator.o AIX/AllContentModel.o AIX/AnySimpleTypeDatatypeValidator.o AIX/AnyURIDatatypeValidator.o AIX/AttrImpl.o AIX/AttrMapImpl.o AIX/AttrNSImpl.o AIX/BMPattern.o AIX/Base64.o AIX/Base64BinaryDatatypeValidator.o AIX/BinFileInputStream.o AIX/BinFileOutputStream.o AIX/BinInputStream.o AIX/BinMemInputStream.o AIX/BinMemOutputStream.o AIX/BinOutputStream.o AIX/BitSet.o AIX/BlockRangeFactory.o AIX/BooleanDatatypeValidator.o AIX/CDATASectionImpl.o AIX/CMAny.o AIX/CMBinaryOp.o AIX/CMUnaryOp.o AIX/CharToken.o AIX/CharacterDataImpl.o AIX/ChildNode.o AIX/ClosureToken.o AIX/CommentImpl.o AIX/ComplexTypeInfo.o AIX/ConcatToken.o AIX/ConditionToken.o AIX/ContentLeafNameTypeVector.o AIX/ContentSpecNode.o AIX/DFAContentModel.o AIX/DGXMLScanner.o AIX/DOMAttrImpl.o AIX/DOMAttrMapImpl.o AIX/DOMAttrNSImpl.o AIX/DOMBuilderImpl.o AIX/DOMCDATASectionImpl.o AIX/DOMCharacterDataImpl.o AIX/DOMChildNode.o AIX/DOMCommentImpl.o AIX/DOMConfigurationImpl.o AIX/DOMDeepNodeListImpl.o AIX/DOMDocumentFragmentImpl.o AIX/DOMDocumentImpl.o AIX/DOMDocumentTypeImpl.o AIX/DOMElementImpl.o AIX/DOMElementNSImpl.o AIX/DOMEntityImpl.o AIX/DOMEntityReferenceImpl.o AIX/DOMErrorImpl.o AIX/DOMException.o AIX/DOMImplementationImpl.o AIX/DOMImplementationRegistry.o AIX/DOMLocatorImpl.o AIX/DOMNamedNodeMapImpl.o AIX/DOMNodeIDMap.o AIX/DOMNodeImpl.o AIX/DOMNodeIteratorImpl.o AIX/DOMNodeListImpl.o AIX/DOMNodeVector.o AIX/DOMNormalizer.o AIX/DOMNotationImpl.o AIX/DOMParentNode.o AIX/DOMParser.o AIX/DOMProcessingInstructionImpl.o AIX/DOMRangeException.o AIX/DOMRangeImpl.o AIX/DOMString.o AIX/DOMStringPool.o AIX/DOMTextImpl.o AIX/DOMTreeWalkerImpl.o AIX/DOMTypeInfoImpl.o AIX/DOMWriterImpl.o AIX/DOMXPathException.o AIX/DOM_Attr.o AIX/DOM_CDATASection.o AIX/DOM_CharacterData.o AIX/DOM_Comment.o AIX/DOM_DOMException.o AIX/DOM_DOMImplementation.o AIX/DOM_Document.o AIX/DOM_DocumentFragment.o AIX/DOM_DocumentType.o AIX/DOM_Element.o AIX/DOM_Entity.o AIX/DOM_EntityReference.o AIX/DOM_NamedNodeMap.o AIX/DOM_Node.o AIX/DOM_NodeFilter.o AIX/DOM_NodeIterator.o AIX/DOM_NodeList.o AIX/DOM_Notation.o AIX/DOM_ProcessingInstruction.o AIX/DOM_Range.o AIX/DOM_RangeException.o AIX/DOM_Text.o AIX/DOM_TreeWalker.o AIX/DOM_XMLDecl.o AIX/DStringPool.o AIX/DTDAttDef.o AIX/DTDAttDefList.o AIX/DTDElementDecl.o AIX/DTDEntityDecl.o AIX/DTDGrammar.o AIX/DTDScanner.o AIX/DTDValidator.o AIX/DatatypeValidator.o AIX/DatatypeValidatorFactory.o AIX/DateDatatypeValidator.o AIX/DateTimeDatatypeValidator.o AIX/DateTimeValidator.o AIX/DayDatatypeValidator.o AIX/DecimalDatatypeValidator.o AIX/DeepNodeListImpl.o AIX/DefaultPanicHandler.o AIX/DocumentFragmentImpl.o AIX/DocumentImpl.o AIX/DocumentTypeImpl.o AIX/DomMemDebug.o AIX/DoubleDatatypeValidator.o AIX/Dummy.o AIX/DurationDatatypeValidator.o AIX/ENTITYDatatypeValidator.o AIX/ElemStack.o AIX/ElementDefinitionImpl.o AIX/ElementImpl.o AIX/ElementNSImpl.o AIX/EncodingValidator.o AIX/EntityImpl.o AIX/EntityReferenceImpl.o AIX/FieldActivator.o AIX/FieldValueMap.o AIX/FloatDatatypeValidator.o AIX/GCCDefs.o AIX/GeneralAttributeCheck.o AIX/Grammar.o AIX/GrammarResolver.o AIX/HashPtr.o AIX/HashXMLCh.o AIX/HeaderDummy.o AIX/HexBin.o AIX/HexBinaryDatatypeValidator.o AIX/IC_Field.o AIX/IC_Key.o AIX/IC_KeyRef.o AIX/IC_Selector.o AIX/IC_Unique.o AIX/IDDatatypeValidator.o AIX/IDREFDatatypeValidator.o AIX/IGXMLScanner.o AIX/IGXMLScanner2.o AIX/IconvTransService.o AIX/IdentityConstraint.o AIX/IdentityConstraintHandler.o AIX/InMemMsgLoader.o AIX/InputSource.o AIX/KVStringPair.o AIX/ListDatatypeValidator.o AIX/LocalFileFormatTarget.o AIX/LocalFileInputSource.o AIX/Match.o AIX/MemBufFormatTarget.o AIX/MemBufInputSource.o AIX/MemoryManagerArrayImpl.o AIX/MemoryManagerImpl.o AIX/MixedContentModel.o AIX/ModifierToken.o AIX/MonthDatatypeValidator.o AIX/MonthDayDatatypeValidator.o AIX/Mutexes.o AIX/NCNameDatatypeValidator.o AIX/NOTATIONDatatypeValidator.o AIX/NameDatatypeValidator.o AIX/NamedNodeMapImpl.o AIX/NamespaceScope.o AIX/NodeIDMap.o AIX/NodeImpl.o AIX/NodeIteratorImpl.o AIX/NodeListImpl.o AIX/NodeVector.o AIX/NotationImpl.o AIX/Op.o AIX/OpFactory.o AIX/PSVIAttribute.o AIX/PSVIAttributeList.o AIX/PSVIElement.o AIX/PSVIItem.o AIX/PanicHandler.o AIX/ParenToken.o AIX/ParentNode.o AIX/ParserForXMLSchema.o AIX/PlatformUtils.o AIX/ProcessingInstructionImpl.o AIX/QName.o AIX/QNameDatatypeValidator.o AIX/RangeFactory.o AIX/RangeImpl.o AIX/RangeToken.o AIX/RangeTokenMap.o AIX/ReaderMgr.o AIX/RefCountedImpl.o AIX/RegularExpression.o AIX/RegxParser.o AIX/RegxUtil.o AIX/SAX2XMLFilterImpl.o AIX/SAX2XMLReaderImpl.o AIX/SAXException.o AIX/SAXParseException.o AIX/SAXParser.o AIX/SGXMLScanner.o AIX/SchemaAttDef.o AIX/SchemaAttDefList.o AIX/SchemaElementDecl.o AIX/SchemaGrammar.o AIX/SchemaInfo.o AIX/SchemaSymbols.o AIX/SchemaValidator.o AIX/SimpleContentModel.o AIX/SocketNetAccessor.o AIX/StdInInputSource.o AIX/StdOutFormatTarget.o AIX/StringDatatypeValidator.o AIX/StringPool.o AIX/StringToken.o AIX/SubstitutionGroupComparator.o AIX/SynchronizedStringPool.o AIX/TextImpl.o AIX/TimeDatatypeValidator.o AIX/Token.o AIX/TokenFactory.o AIX/TransService.o AIX/TraverseSchema.o AIX/TreeWalkerImpl.o AIX/URLInputSource.o AIX/UnicodeRangeFactory.o AIX/UnionDatatypeValidator.o AIX/UnionToken.o AIX/UnixHTTPURLInputStream.o AIX/ValidationContextImpl.o AIX/ValueStore.o AIX/ValueStoreCache.o AIX/VecAttrListImpl.o AIX/VecAttributesImpl.o AIX/WFXMLScanner.o AIX/Wrapper4DOMInputSource.o AIX/Wrapper4InputSource.o AIX/XML256TableTranscoder.o AIX/XML88591Transcoder.o AIX/XMLASCIITranscoder.o AIX/XMLAbstractDoubleFloat.o AIX/XMLAttDef.o AIX/XMLAttDefList.o AIX/XMLAttr.o AIX/XMLBigDecimal.o AIX/XMLBigInteger.o AIX/XMLBuffer.o AIX/XMLBufferMgr.o AIX/XMLCanRepGroup.o AIX/XMLChTranscoder.o AIX/XMLChar.o AIX/XMLContentModel.o AIX/XMLDTDDescription.o AIX/XMLDTDDescriptionImpl.o AIX/XMLDateTime.o AIX/XMLDeclImpl.o AIX/XMLDouble.o AIX/XMLEBCDICTranscoder.o AIX/XMLElementDecl.o AIX/XMLEntityDecl.o AIX/XMLException.o AIX/XMLFloat.o AIX/XMLFormatter.o AIX/XMLGrammarDescription.o AIX/XMLGrammarPoolImpl.o AIX/XMLIBM1047Transcoder.o AIX/XMLIBM1140Transcoder.o AIX/XMLInitializer.o AIX/XMLMsgLoader.o AIX/XMLNotationDecl.o AIX/XMLNumber.o AIX/XMLRangeFactory.o AIX/XMLReader.o AIX/XMLRecognizer.o AIX/XMLRefInfo.o AIX/XMLRegisterCleanup.o AIX/XMLScanner.o AIX/XMLScannerResolver.o AIX/XMLSchemaDescription.o AIX/XMLSchemaDescriptionImpl.o AIX/XMLString.o AIX/XMLStringTokenizer.o AIX/XMLUCSTranscoder.o AIX/XMLURL.o AIX/XMLUTF16Transcoder.o AIX/XMLUTF8Transcoder.o AIX/XMLUni.o AIX/XMLUniCharacter.o AIX/XMLUri.o AIX/XMLValidator.o AIX/XMLWin1252Transcoder.o AIX/XMemory.o AIX/XPathMatcher.o AIX/XPathMatcherStack.o AIX/XPathSymbols.o AIX/XProtoType.o AIX/XSAXMLScanner.o AIX/XSAnnotation.o AIX/XSAttributeDeclaration.o AIX/XSAttributeGroupDefinition.o AIX/XSAttributeUse.o AIX/XSComplexTypeDefinition.o AIX/XSDDOMParser.o AIX/XSDElementNSImpl.o AIX/XSDErrorReporter.o AIX/XSDLocator.o AIX/XSElementDeclaration.o AIX/XSFacet.o AIX/XSIDCDefinition.o AIX/XSModel.o AIX/XSModelGroup.o AIX/XSModelGroupDefinition.o AIX/XSMultiValueFacet.o AIX/XSNamespaceItem.o AIX/XSNotationDeclaration.o AIX/XSObject.o AIX/XSObjectFactory.o AIX/XSParticle.o AIX/XSSimpleTypeDefinition.o AIX/XSTypeDefinition.o AIX/XSValue.o AIX/XSWildcard.o AIX/XSerializeEngine.o AIX/XTemplateSerializer.o AIX/XUtil.o AIX/XercesAttGroupInfo.o AIX/XercesDOMParser.o AIX/XercesElementWildcard.o AIX/XercesGroupInfo.o AIX/XercesXPath.o AIX/YearDatatypeValidator.o AIX/YearMonthDatatypeValidator.o AIX/sax2Dummy.o -lpthreads -L/usr/lib -L/usr/local/lib ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__si_class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__vmi_class_type_info ld: 0711-317 ERROR: Undefined symbol: vtable for __cxxabiv1::__enum_type_info ld: 0711-317 ERROR: Undefined symbol: typeinfo for int ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. |
From: Bryan H. <hb...@us...> - 2008-02-05 23:23:30
|
32 bit is the most normal mode on AIX, presumably for historical reasons. It's the default for everything and though I've seen libraries that don't have 64 bit versions of things, I've never seen one that doesn't have 32 bit versions. (That's just my observation as a user). -- Bryan Henderson IBM Almaden Research Center San Jose CA Filesystems |