Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to uninstall LLVM?

Tags:

linux

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?

like image 229
antoyo Avatar asked May 08 '16 15:05

antoyo


1 Answers

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

like image 176
Daniel Schepler Avatar answered Sep 20 '22 22:09

Daniel Schepler