18

I installed LLVM from source (using CMake and make install) but I am unable to uninstall it because there is no make uninstall avalaible.

This is LLVM version 3.5.2.

I use ArchLinux.

How can I uninstall LLVM in an automated way?

antoyo
  • 11,097
  • 7
  • 51
  • 82

1 Answers1

32

From the CMake FAQ / Can I do "make uninstall" with CMake :

...Unix users could enter this command in the shell:

xargs rm < install_manifest.txt

(after you cd to the LLVM build directory).

kkahl
  • 415
  • 5
  • 17
Daniel Schepler
  • 3,043
  • 14
  • 20