Difference between revisions of "Xerces-C++"

From CBLFS
Jump to navigationJump to search
(Multilib)
Line 29: Line 29:
 
=== 32bit ===
 
=== 32bit ===
  
Compile the package:
+
  ToDo
 
 
  export XERCESCROOT=$PWD &&
 
cd src/xercesc &&
 
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
 
./configure --prefix=/usr &&
 
make
 
 
 
Install the package:
 
 
 
make install
 
  
 
=== N32 ===
 
=== N32 ===
  
Compile the package:
+
  ToDo
 
 
  export XERCESCROOT=$PWD &&
 
cd src/xercesc &&
 
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
 
./configure --prefix=/usr --libdir=/usr/lib32 &&
 
make
 
 
 
Install the package:
 
 
 
make install
 
  
 
=== 64Bit ===
 
=== 64Bit ===
  
Compile the package:
+
  ToDo
 
 
  export XERCESCROOT=$PWD &&
 
cd src/xercesc &&
 
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
 
./configure --prefix=/usr --libdir=/usr/lib64 &&
 
make
 
 
 
Install the package:
 
 
 
make install
 

Revision as of 17:37, 15 April 2007

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

Introduction to Xerces-C++

Dependencies

Non-Multilib

Compile the package:

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

Install the package:

make install

Multilib

32bit

ToDo

N32

ToDo

64Bit

ToDo