diff options
author | Duncan Sands <baldrick@free.fr> | 2009-03-01 15:19:03 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-03-01 15:19:03 +0000 |
commit | 10f06755ce2f8de046938cc3d19d052d76e722c3 (patch) | |
tree | 70ecb521769c9314c448ec6c46009dee0c81a491 /docs | |
parent | d14e9e78e427139e30c538242c5e65e895890067 (diff) | |
download | external_llvm-10f06755ce2f8de046938cc3d19d052d76e722c3.zip external_llvm-10f06755ce2f8de046938cc3d19d052d76e722c3.tar.gz external_llvm-10f06755ce2f8de046938cc3d19d052d76e722c3.tar.bz2 |
Tweak this a bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/GoldPlugin.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/GoldPlugin.html b/docs/GoldPlugin.html index 76e49f0..bc871bd 100644 --- a/docs/GoldPlugin.html +++ b/docs/GoldPlugin.html @@ -20,15 +20,15 @@ <div class="doc_section"><a name="introduction">Introduction</a></div> <!--=========================================================================--> <div class="doc_text"> - <p>Building with link time optimization requires cooperation with the + <p>Building with link time optimization requires cooperation from the system linker. LTO support on Linux systems requires that you use -<a href="http://sourceware.org/binutils">gold</a> which supports for +the <a href="http://sourceware.org/binutils">gold linker</a> which supports LTO via plugins. This is the same system used by the upcoming <a href="http://gcc.gnu.org/wiki/LinkTimeOptimization">GCC LTO</a> -support.</p> - <p>The LLVMgold plugin implements the gold -<a href="http://gcc.gnu.org/wiki/whopr/driver">plugin interface</a> on -top of +project.</p> + <p>The LLVM gold plugin implements the +<a href="http://gcc.gnu.org/wiki/whopr/driver">gold plugin interface</a> +on top of <a href="http://llvm.org/docs/LinkTimeOptimization.html#lto">libLTO</a>. The same plugin can also be used by other tools such as <tt>ar</tt> and <tt>nm</tt>. @@ -55,7 +55,7 @@ make all-gold That should leave you with binutils/build/gold/ld-new which supports the -plugin option. - <li>Build LLVMgold. Configure LLVM with + <li>Build the LLVMgold plugin: Configure LLVM with <tt>--with-binutils-include=/path/to/binutils/src/include</tt> and run <tt>make</tt>. </ul> |