diff options
author | John Criswell <criswell@uiuc.edu> | 2003-10-24 18:06:42 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-10-24 18:06:42 +0000 |
commit | 1cdf0a25956884ad7e5ca8e3328a36dc54655963 (patch) | |
tree | d9e794f2bd7ed82137508f1f611d7c1de3fae079 | |
parent | 2c12118046f3906952b98244c20065f1cd0e2efa (diff) |
Added note about multilib options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_1@9476 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/CFEBuildInstrs.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 44c3c54d02..5e753ab992 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -108,6 +108,11 @@ process, and you should only try to do it if <li>No inline assembly for position independent code. At the LLVM level, everything is position independent.</li> <li>We handle <tt>.init</tt> and <tt>.fini</tt> differently.</li> + <li>You may have to disable multilib support in your target. Using multilib + support causes the GCC compiler driver to add a lot of "<tt>-L</tt>" + options to the link line, which do not relate to LLVM and confuse + <tt>gccld</tt>. To disable multilibs, delete any + <tt>MULTILIB_OPTIONS</tt> lines from your target files.</li> <li>Did we mention that we don't support inline assembly? You'll probably have to add some fixinclude hacks to disable it in the system headers.</li> |