summaryrefslogtreecommitdiff
path: root/docs/GCCFEBuildInstrs.html
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2009-01-03 02:35:05 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2009-01-03 02:35:05 +0000
commitb0fa430e1f8e29ea2b5f66f5eaaf5d57994de62e (patch)
tree5f7471d8957e5af411cfd3176956dcb3b965e624 /docs/GCCFEBuildInstrs.html
parent87f333641a24975e4c4ef01ec0f0b89dfd184c51 (diff)
downloadllvm-b0fa430e1f8e29ea2b5f66f5eaaf5d57994de62e.tar.gz
llvm-b0fa430e1f8e29ea2b5f66f5eaaf5d57994de62e.tar.bz2
llvm-b0fa430e1f8e29ea2b5f66f5eaaf5d57994de62e.tar.xz
* Wrap command line flag in <tt>
* Wrapped long lines in code section git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61601 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/GCCFEBuildInstrs.html')
-rw-r--r--docs/GCCFEBuildInstrs.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/GCCFEBuildInstrs.html b/docs/GCCFEBuildInstrs.html
index c93f90b43d..8de21f8007 100644
--- a/docs/GCCFEBuildInstrs.html
+++ b/docs/GCCFEBuildInstrs.html
@@ -191,11 +191,13 @@ cd llvm-gcc-4.2-objects
<li><p>Configure llvm-gcc (here it is configured to install into <tt>/usr/local</tt>).
The <tt>--enable-checking</tt> flag turns on sanity checks inside the compiler.
If you omit it then LLVM should be built with <tt>make ENABLE_OPTIMIZED=1</tt>.
- Additional languages can be appended to the --enable-languages switch,
+ Additional languages can be appended to the <tt>--enable-languages</tt> switch,
for example <tt>--enable-languages=ada,c,c++</tt>.</p>
<pre class="doc_code">
-../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-bootstrap --disable-multilib
+../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c \
+ --enable-checking --enable-llvm=$PWD/../llvm-objects \
+ --disable-bootstrap --disable-multilib
</pre>
<p>If you have a multi-compiler setup, then you can configure like this:</p>
@@ -203,7 +205,9 @@ cd llvm-gcc-4.2-objects
<pre class="doc_code">
export CC=<b>PATH_TO_C_AND_ADA_COMPILER</b>
export CXX=<b>PATH_TO_C++_COMPILER</b>
-../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-bootstrap --disable-multilib
+../llvm-gcc-4.2/configure --prefix=<b>/usr/local</b> --enable-languages=ada,c \
+ --enable-checking --enable-llvm=$PWD/../llvm-objects \
+ --disable-bootstrap --disable-multilib
</pre>
</li>