Ubuntu下yaml-cpp的安裝

因爲要學習的代碼中用到了yaml-cpp,所以在此記錄一下安裝過程,翻譯自:stackoverflowhtml

關於yaml-cpp能夠看一下yamlyaml-cpp來了解一下。git

首先刪除本地原有的yaml-cpp庫:github

The installer just copies the header files to the directory $PREFIX/include/yaml-cpp and the library files to $PREFIX/lib/libyaml-cpp.so. ($PREFIX is probably /usr/local)post

Just remove the header directory and the library files and it should be uninstalled.學習

翻譯一下這意思就是安裝僅僅是將一些頭文件拷貝到$PREFIX/include/yaml-cpp;將一些庫文件拷貝到$PREFIX/lib,好比libyaml-cpp.so($PREFIX在Ubuntu下通常是/usr/local)。ui

所以將頭文件目錄和這些庫文件刪除掉,那麼就算完成了卸載。spa

而後是yam-cpp的安裝,這裏說的是利用源碼進行安裝的方式:.net

git clone https://github.com/jbeder/yaml-cpp.git
mkdir build
cd build
cmake -DBUILD_SHARED_LIBS=ON ..
make
sudo make install

這樣就算完成了yaml-cpp的安裝。翻譯

相關文章
相關標籤/搜索