summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-06-04 16:08:10 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-06-04 16:08:10 +0000
commit347c7bbcb57f943ea9834e2ffdc6696508c55682 (patch)
treef19f66ccf7a3002283bd36e9d898c906f2eb4bd6 /docs
parent82f1d1b5721a581b03d04d2b3c54fac7d3b69783 (diff)
downloadllvm-347c7bbcb57f943ea9834e2ffdc6696508c55682.tar.gz
llvm-347c7bbcb57f943ea9834e2ffdc6696508c55682.tar.bz2
llvm-347c7bbcb57f943ea9834e2ffdc6696508c55682.tar.xz
--plugin is not needed for bfd anymore. Update docs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72867 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/GoldPlugin.html13
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/GoldPlugin.html b/docs/GoldPlugin.html
index 6be5277efd..17a50aca6e 100644
--- a/docs/GoldPlugin.html
+++ b/docs/GoldPlugin.html
@@ -153,12 +153,21 @@ $ llvm-gcc -use-gold-plugin a.o b.o -o main # &lt;-- link with LLVMgold plugin
<pre class="doc_code">
export CC="$PREFIX/bin/llvm-gcc -use-gold-plugin"
export CXX="$PREFIX/bin/llvm-g++ -use-gold-plugin"
-export AR="$PREFIX/bin/ar --plugin libLLVMgold.so"
-export NM="$PREFIX/bin/nm --plugin libLLVMgold.so"
+export AR="$PREFIX/bin/ar"
+export NM="$PREFIX/bin/nm"
export RANLIB=/bin/true #ranlib is not needed, and doesn't support .bc files in .a
export CFLAGS="-O4"
</pre>
</li>
+ <li>Or you can just set your path:
+ <pre class="doc_code">
+export PATH="$PREFIX/bin:$PATH"
+export CC="llvm-gcc -use-gold-plugin"
+export CXX="llvm-g++ -use-gold-plugin"
+export RANLIB=/bin/true
+export CFLAGS="-O4"
+ </pre>
+ </li>
<li>Configure &amp; build the project as usual: <tt>./configure &amp;&amp; make &amp;&amp; make check</tt> </li>
</ul>
<p> The environment variable settings may work for non-autotooled projects