antoyo
antoyo

Reputation: 11933

How to uninstall LLVM?

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?

Upvotes: 20

Views: 17369

Answers (1)

Daniel Schepler
Daniel Schepler

Reputation: 3103

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).

Upvotes: 33

Related Questions