我使用以下脚本从源代码安装了libc ++。 make uninstall
不受支持。卸载它的最佳方法是什么?
git clone --depth=1 https://github.com/llvm-mirror/llvm.git llvm-source
git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi
export C_COMPILER=clang
export COMPILER=clang++
# Build and install libc++
mkdir llvm-build && cd llvm-build
cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr \
../llvm-source
make cxx
sudo make install-cxxabi install-cxx
答案 0 :(得分:1)
好吧,经过大量搜索后,很明显,当make unintsall
未实现时,没有自动甚至半自动的方式进行卸载。有两种方法可以解决这个问题:
如果使用cmake,请再次运行安装,但设置-DCMAKE_INSTALL_PREFIX=./output
之类的标记。这将导致cmake将所有文件放入./output。现在您可以观察文件,并手动删除它们。我认为默认情况下,cmake会将这些文件放在/usr/local
。
如果生成了install_manifest.txt文件,则可以使用另一个cool trick:cat install_manifest.txt | xargs echo sudo rm | sh
。