diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-05 20:50:05 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2012-10-05 20:50:05 +0000 |
commit | 9dd4687fcc6a52c0429a032e98c1efa6f8147890 (patch) | |
tree | 39d36c6ed67113ae54a39622c4c0f8efc2e77bbf /llvm/docs | |
parent | 48d88919d790ec65edcd9acfeb7f728bffe905ab (diff) | |
download | bcm5719-llvm-9dd4687fcc6a52c0429a032e98c1efa6f8147890.tar.gz bcm5719-llvm-9dd4687fcc6a52c0429a032e98c1efa6f8147890.zip |
GoldPlugin.rst: minor typesetting fixes.
llvm-svn: 165334
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/GoldPlugin.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/GoldPlugin.rst b/llvm/docs/GoldPlugin.rst index 8e4713e4334..300aea9f9a4 100644 --- a/llvm/docs/GoldPlugin.rst +++ b/llvm/docs/GoldPlugin.rst @@ -76,11 +76,11 @@ You can produce bitcode files from ``clang`` using ``-emit-llvm`` or Any of these flags will also cause ``clang`` to look for the gold plugin in the ``lib`` directory under its prefix and pass the ``-plugin`` option to ``ld``. It will not look for an alternate linker, which is why you need -gold to be the installed system linker in your path.`` +gold to be the installed system linker in your path. If you want ``ar`` and ``nm`` to work seamlessly as well, install ``LLVMgold.so`` to ``/usr/lib/bfd-plugins``. If you built your own gold, be -sure to install the ``ar`` and ``nm-new`` you built to ``/usr/bin`` +sure to install the ``ar`` and ``nm-new`` you built to ``/usr/bin``. Example of link time optimization @@ -181,6 +181,6 @@ Licensing ========= Gold is licensed under the GPLv3. LLVMgold uses the interface file -``plugin-api.h`` from gold which means that the resulting LLVMgold.so +``plugin-api.h`` from gold which means that the resulting ``LLVMgold.so`` binary is also GPLv3. This can still be used to link non-GPLv3 programs just as much as gold could without the plugin. |