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;將一些庫文件拷貝到
ui$PREFIX/lib,好比libyaml-cpp.so(
$PREFIX
在Ubuntu下通常是/usr/local)。
所以將頭文件目錄和這些庫文件刪除掉,那麼就算完成了卸載。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的安裝。翻譯