Difference between revisions of "Xerces-C++"

From CBLFS
Jump to navigationJump to search
m
Line 34: Line 34:
 
  cd src/xercesc &&
 
  cd src/xercesc &&
 
  ./runConfigure -plinux -cgcc -xg++ -b32 -P/usr \
 
  ./runConfigure -plinux -cgcc -xg++ -b32 -P/usr \
     -minmem -nsocket -tnative -rpthread &&
+
     -minmem -nsocket -tnative -rpthread \
 +
    -z "${BUILD32}" -l "${BUILD32}"
 
  make
 
  make
  
Line 55: Line 56:
 
  cd src/xercesc &&
 
  cd src/xercesc &&
 
  ./runConfigure -plinux -cgcc -xg++ -b64 -P/usr \
 
  ./runConfigure -plinux -cgcc -xg++ -b64 -P/usr \
     -minmem -nsocket -tnative -rpthread &&
+
     -minmem -nsocket -tnative -rpthread \
 +
    -z "${BUILD64}" -l "${BUILD64}"
 
  make
 
  make
  

Revision as of 11:05, 20 September 2007

Download Source: http://www.apache.org/dist/xerces/c/sources/xerces-c-src_2_8_0.tar.gz

Introduction to Xerces-C++

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

export XERCESCROOT=$PWD &&
cd src/xercesc &&
./runConfigure -plinux -cgcc -xg++ -P/usr \
    -minmem -nsocket -tnative -rpthread &&
make

Install the package:

make install

Multilib

32bit

Compile the package:

export XERCESCROOT=$PWD &&
cd src/xercesc &&
./runConfigure -plinux -cgcc -xg++ -b32 -P/usr \
    -minmem -nsocket -tnative -rpthread \
    -z "${BUILD32}" -l "${BUILD32}"
make

Install the package:

make install &&
unset XERCESCROOT

N32

ToDo

64Bit

Compile the package:

export XERCESCROOT=$PWD &&
sed -i "s:/lib:&64:g" obj/Makefile.in &&
cd src/xercesc &&
./runConfigure -plinux -cgcc -xg++ -b64 -P/usr \
    -minmem -nsocket -tnative -rpthread \
    -z "${BUILD64}" -l "${BUILD64}" 
make

Install the package:

make install &&
unset XERCESCROOT