如何卸载LLVM?
How to uninstall LLVM?
我从源代码安装了 LLVM(使用 CMake 和 make install
),但我无法卸载它,因为没有 make uninstall
avalaible。
这是 LLVM 版本 3.5.2。
我使用 ArchLinux。
如何自动卸载 LLVM?
来自CMake FAQ / Can I do "make uninstall" with CMake :
...Unix users could enter this command in the shell:
xargs rm < install_manifest.txt
(在你 cd
到 LLVM 构建目录之后)。
我从源代码安装了 LLVM(使用 CMake 和 make install
),但我无法卸载它,因为没有 make uninstall
avalaible。
这是 LLVM 版本 3.5.2。
我使用 ArchLinux。
如何自动卸载 LLVM?
来自CMake FAQ / Can I do "make uninstall" with CMake :
...Unix users could enter this command in the shell:
xargs rm < install_manifest.txt
(在你 cd
到 LLVM 构建目录之后)。