Skip to content
Snippets Groups Projects
Commit 0d35ed91 authored by Tom Stellard's avatar Tom Stellard
Browse files

Updated README.TXT with information about using DESTDIR and building with Ninja.

Patch by: Dan Liew

llvm-svn: 200416
parent 8a3770ab
No related branches found
No related tags found
No related merge requests found
......@@ -26,10 +26,25 @@ functions.
libclc currently only supports the PTX target, but support for more
targets is welcome.
Compiling
---------
Compiling and installing with Make
----------------------------------
./configure.py --with-llvm-config=/path/to/llvm-config && make
$ ./configure.py --with-llvm-config=/path/to/llvm-config && make
$ make install
Note you can use the DESTDIR Makefile variable to do staged installs.
$ make install DESTDIR=/path/for/staged/install
Compiling and installing with Ninja
-----------------------------------
$ ./configure.py -g ninja --with-llvm-config=/path/to/llvm-config && ninja
$ ninja install
Note you can use the DESTDIR environment variable to do staged installs.
$ DESTDIR=/path/for/staged/install ninja install
Website
-------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment