Difference between revisions of "Xerces-C++"

From CBLFS
Jump to navigationJump to search
Line 28: Line 28:
 
=== 32bit ===
 
=== 32bit ===
  
  ToDo
+
Compile the package:
 +
 
 +
  export XERCESCROOT=$PWD &&
 +
cd src/xercesc &&
 +
CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr &&
 +
make
 +
 +
 
 +
Install the package:
 +
 
 +
make install
  
 
=== N32 ===
 
=== N32 ===
Line 36: Line 46:
 
=== 64Bit ===
 
=== 64Bit ===
  
  ToDo
+
 
 +
Compile the package:
 +
 
 +
  export XERCESCROOT=$PWD &&
 +
cd src/xercesc &&
 +
CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr &&
 +
make
 +
 +
 
 +
Install the package:
 +
 
 +
make install

Revision as of 07:35, 14 September 2007

Download Source: http://www.apache.org/dist/xml/xerces-c/source/xerces-c-src_2_7_0.tar.gz

Introduction to Xerces-C++

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

export XERCESCROOT=$PWD &&
cd src/xercesc &&
./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

32bit

Compile the package:

export XERCESCROOT=$PWD &&
cd src/xercesc &&
CC="gcc ${BUILD32}" USE_ARCH=32 ./configure --prefix=/usr &&
make

Install the package:

make install

N32

ToDo

64Bit

Compile the package:

export XERCESCROOT=$PWD &&
cd src/xercesc &&
CC="gcc ${BUILD64}" USE_ARCH=64 ./configure --prefix=/usr &&
make

Install the package:

make install