mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-29 22:50:55 +00:00
Document how easy it is to use the gold plugin and have LTO with autotooled projects.
Please correct the documentation if I missed anything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72773 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
703e235f0c
commit
5641f8d67f
@ -14,6 +14,7 @@
|
||||
<li><a href="#usage">Usage</a>
|
||||
<ul>
|
||||
<li><a href="#example1">Example of link time optimization</a></li>
|
||||
<li><a href="#lto_autotools">Quickstart for using LTO with autotooled projects</a></li>
|
||||
</ul></li>
|
||||
<li><a href="#licensing">Licensing</a></li>
|
||||
</ol>
|
||||
@ -135,6 +136,34 @@ $ llvm-gcc -use-gold-plugin a.o b.o -o main # <-- link with LLVMgold plugin
|
||||
example</a> gold does not currently eliminate foo4.</p>
|
||||
</div>
|
||||
|
||||
<!--=========================================================================-->
|
||||
<div class="doc_section"><a name="lto_autotools">Quickstart for using LTO with autotooled projects</a></div>
|
||||
<!--=========================================================================-->
|
||||
<div class="doc_text">
|
||||
<p><tt>gold</tt>, <tt>ar</tt> and <tt>nm</tt> all support plugins now, so everything should be
|
||||
in place for an easy to use LTO build of autotooled projects:</p>
|
||||
<ul>
|
||||
<li>Follow the instructions <a href="#build">on how to build libLLVMgold.so</a>.</li>
|
||||
<li>Install the newly built binutils to <tt>$PREFIX</tt></li>
|
||||
<li>Copy <tt>Release/lib/libLLVMgold.so</tt> to
|
||||
<tt>$PREFIX/libexec/gcc/x86_64-unknown-linux-gnu/4.2.1/</tt> and
|
||||
<tt>$PREFIX/lib/bfd-plugins/</tt></li>
|
||||
<li>Set environment variables (<tt>$PREFIX</tt> is where you installed llvm-gcc and
|
||||
binutils):
|
||||
<pre class="doc_code">
|
||||
export CC="$PREFIX/bin/llvm-gcc -use-gold-plugin"
|
||||
export AR="$PREFIX/bin/ar --plugin libLLVMgold.so"
|
||||
export NM="$PREFIX/bin/nm --plugin libLLVMgold.so"
|
||||
export RANLIB=/bin/true #ranlib is not needed, and doesn't support .bc files in .a
|
||||
export CFLAGS="-O4"
|
||||
</pre>
|
||||
</li>
|
||||
<li>Configure & build the project as usual: <tt>./configure && make && make check</tt> </li>
|
||||
</ul>
|
||||
<p> The environment variable settings may work for non-autotooled projects
|
||||
too, but you may need to set the <tt>LD</tt> environment variable as well.</p>
|
||||
</div>
|
||||
|
||||
<!--=========================================================================-->
|
||||
<div class="doc_section"><a name="licensing">Licensing</a></div>
|
||||
<!--=========================================================================-->
|
||||
|
Loading…
Reference in New Issue
Block a user