diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-02-09 15:59:08 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-02-09 15:59:08 +0000 |
commit | a7974ccd97192ca531d3153cea1d119d80774eb6 (patch) | |
tree | f4367e0a538d6fb39c6a285422ef08a50604569b /llvm/docs/FAQ.html | |
parent | b63d0c4ad2854bbdee2679cea83d8527cdea48e1 (diff) | |
download | bcm5719-llvm-a7974ccd97192ca531d3153cea1d119d80774eb6.tar.gz bcm5719-llvm-a7974ccd97192ca531d3153cea1d119d80774eb6.zip |
Remove references to gccld and gccas, adjusting the documentation to
mention llvm-ld and opt instead (if appropriate).
llvm-svn: 34094
Diffstat (limited to 'llvm/docs/FAQ.html')
-rw-r--r-- | llvm/docs/FAQ.html | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/llvm/docs/FAQ.html b/llvm/docs/FAQ.html index 2dffd203ffd..d540edd81b0 100644 --- a/llvm/docs/FAQ.html +++ b/llvm/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"> |