I am Charmie

メモとログ

Xerces-C++ XML Parser installation

Xerces-C++ XML parser is an XML parser for C++. This library is also required for using code synthesis XSD. The library provides instruction for a href="http://xerces.apache.org/xerces-c/install-3.html">installation and build.

[sourcecode language="bash"] wget http://ftp.meisei-u.ac.jp/mirror/apache/dist//xerces/c/3/sources/xerces-c-3.1.1.tar.gz tar -xvzf xerces-c-3.1.1.tar.gz cd xerces-c-3.1.1 ./configure --enable-netaccessor-curl --enable-transcoder-gnuiconv --enable-msgloader-inmemory make 2>&1 | tee ../../XercesC3.1.1Make.log sudo make install 2>&1 | tee ../../XercesC3.1.1MakeInstall.log [/sourcecode]