diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-01 05:15:44 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-01 05:15:44 +0000 |
commit | 0b4f468bf62cbd0737a7a053d884fea9df914e37 (patch) | |
tree | e5b3c7c3b7505b7fa277bc9244ccce2561d30aa3 /docs/CFEBuildInstrs.html | |
parent | 302ed2a3c10bd08dbd0f7cda65b723e26df4fad5 (diff) | |
download | external_llvm-0b4f468bf62cbd0737a7a053d884fea9df914e37.zip external_llvm-0b4f468bf62cbd0737a7a053d884fea9df914e37.tar.gz external_llvm-0b4f468bf62cbd0737a7a053d884fea9df914e37.tar.bz2 |
Be a little more explicit about how to configure LLVM with the --prefix
option so that permissions errors don't occur if the default, /usr/local,
is taken.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CFEBuildInstrs.html')
-rw-r--r-- | docs/CFEBuildInstrs.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 926e7ff..de53e01 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -94,10 +94,15 @@ invalid code. Instead, use the system assembler and linker. <li><p>Configure and build the LLVM libraries and tools using:</p> <pre> % cd llvm - % ./configure [options...] + % ./configure --prefix=/some/path/you/can/install/to [options...] % gmake tools-only </pre> - <p>This will build all of the LLVM tools and libraries.</p></li> + <p>This will build all of the LLVM tools and libraries. The <tt>--prefix</tt> + option defaults to /usr/local (per configure standards) but unless you are a + system administrator, you probably won't be able to install LLVM there because + of permissions. Specify a path into which LLVM can be installed (e.g. + <tt>--prefix=/home/user/llvm</tt>).</p> +</li> <li><p>Add the directory containing the tools to your PATH.</p> <pre> |