mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18401 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
302ed2a3c1
commit
0b4f468bf6
@ -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>
|
<li><p>Configure and build the LLVM libraries and tools using:</p>
|
||||||
<pre>
|
<pre>
|
||||||
% cd llvm
|
% cd llvm
|
||||||
% ./configure [options...]
|
% ./configure --prefix=/some/path/you/can/install/to [options...]
|
||||||
% gmake tools-only
|
% gmake tools-only
|
||||||
</pre>
|
</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>
|
<li><p>Add the directory containing the tools to your PATH.</p>
|
||||||
<pre>
|
<pre>
|
||||||
|
Loading…
Reference in New Issue
Block a user