How to remove LLVM?

I installed LLVM from the source (using CMake and make install ), but I can’t remove it because there is no make uninstall avalaible.

This is the LLVM version of version 3.5.2.

I am using ArchLinux.

How can I remove LLVM in an automatic way?

+5
source share
1 answer

From https://cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F :

... Unix users can enter this command into the shell:

 xargs rm < install_manifest.txt 

(after cd to the LLVM build directory).

+13
source

All Articles