I am Charmie

メモとログ

script for install TinyXML2 on Ubuntu

The following script downloads the source code of TinyXML2, compiles it, and installs it.

wget https://github.com/leethomason/tinyxml2/archive/master.zip -O tinyxml2-master.zip # download the source code unzip tinyxml2-master.zip mkdir tinyxml2-build cd tinyxml2-build cmake ../tinyxml2-master # run cmake make -j4 2>&1 | tee ../Tinyxml2Make.log # make TinyXML2 and save a log of the compilation sudo make install 2>&1 | tee ../Tinyxml2MakeInstall.log # install the compiled TinyXML2 and save a log of the installation