1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

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.

llvm-svn: 18401
This commit is contained in:
Reid Spencer 2004-12-01 05:15:44 +00:00
parent ebf6266db1
commit 9901891a3f

View File

@ -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>