> I downloaded the 64 bit versions of xerces and xalan and now I don't > get the errors below, but I do get other warnings (I don't know how > serious these are, can I run my app without them ?) :
No, you can't. > Does anyone have a solution of what I can do to get rid of these warnings ? ... > /opt/aCC/bin/aCC -c -w -ext +DA2.0W -AA -mt -g0 +d +Z +p -DHPUX -D_DEBUG -I ./i > nclude/ -I /opt/aCC/include_std/ -I ../xerces/include/ -I > ../xalan/include/ src/main.cpp -o obj/main.o You're building with the -AA option, while we build without it (-Aa). Since the two options are not compatible, you'll have to build Xalan and Xerces from the source distributions and add the -AA option. Dave
