summaryrefslogtreecommitdiffstats
path: root/docs/FAQ.html
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-09 15:59:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-09 15:59:08 +0000
commit434262ad518dad47841189b27fb9f3943d8206b8 (patch)
tree5c5a3ebd2172b71a76f0319e54849e82cea05a47 /docs/FAQ.html
parent43eb96c3ef62c69ccec13e7326a5660a74483f04 (diff)
downloadexternal_llvm-434262ad518dad47841189b27fb9f3943d8206b8.zip
external_llvm-434262ad518dad47841189b27fb9f3943d8206b8.tar.gz
external_llvm-434262ad518dad47841189b27fb9f3943d8206b8.tar.bz2
Remove references to gccld and gccas, adjusting the documentation to
mention llvm-ld and opt instead (if appropriate). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/FAQ.html')
-rw-r--r--docs/FAQ.html25
1 files changed, 9 insertions, 16 deletions
diff --git a/docs/FAQ.html b/docs/FAQ.html
index 2dffd20..d540edd 100644
--- a/docs/FAQ.html
+++ b/docs/FAQ.html
@@ -460,28 +460,21 @@ or translation to the C back end). That is why configure thinks your system
<p>
To work around this, perform the following steps:
</p>
-
<ol>
- <li>
- Make sure the CC and CXX environment variables contains the full path to the
- LLVM GCC front end.
- </li>
+ <li>Make sure the CC and CXX environment variables contains the full path to
+ the LLVM GCC front end.</li>
- <li>
- Make sure that the regular C compiler is first in your PATH.
- </li>
+ <li>Make sure that the regular C compiler is first in your PATH. </li>
- <li>
- Add the string "-Wl,-native" to your CFLAGS environment variable.
- </li>
+ <li>Add the string "-Wl,-native" to your CFLAGS environment variable.</li>
</ol>
<p>
-This will allow the gccld linker to create a native code executable instead of
-a shell script that runs the JIT. Creating native code requires standard
-linkage, which in turn will allow the configure script to find out if code is
-not linking on your system because the feature isn't available on your system.
-</p>
+This will allow the <tt>llvm-ld</tt> linker to create a native code executable
+instead of shell script that runs the JIT. Creating native code requires
+standard linkage, which in turn will allow the configure script to find out if
+code is not linking on your system because the feature isn't available on your
+system.</p>
</div>
<div class="question">