diff options
author | John Criswell <criswell@uiuc.edu> | 2003-12-10 20:04:13 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-12-10 20:04:13 +0000 |
commit | 2998d3fde716816c1ac53675798af3bd5cf48fa8 (patch) | |
tree | e73a7223a341466e603984da72ad5f8d9e382a4b /docs/CFEBuildInstrs.html | |
parent | 265f0ec5599b699e6c5360fd4c36c5b2056d1089 (diff) | |
download | external_llvm-2998d3fde716816c1ac53675798af3bd5cf48fa8.zip external_llvm-2998d3fde716816c1ac53675798af3bd5cf48fa8.tar.gz external_llvm-2998d3fde716816c1ac53675798af3bd5cf48fa8.tar.bz2 |
Fixed a comma error.
Added the --disable-threads option to GCC configure (to avoid pthread errors
when building code with LLVM).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10380 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CFEBuildInstrs.html')
-rw-r--r-- | docs/CFEBuildInstrs.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 4b6bb77..be844b9 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -84,7 +84,7 @@ process, and you should <b>only</b> try to do it if:</p> % set CFEINSTALL = `pwd`/install </pre></li> -<li><p>Configure, build and install the C front-end:</p> +<li><p>Configure, build, and install the C front-end:</p> <p> <b>Linux/x86:</b> @@ -92,7 +92,7 @@ process, and you should <b>only</b> try to do it if:</p> <pre> % cd build - % ../src/configure --prefix=$CFEINSTALL --disable-nls --disable-shared \ + % ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-nls --disable-shared \ --enable-languages=c,c++ % gmake all-gcc % setenv LLVM_LIB_SEARCH_PATH `pwd`/gcc @@ -110,7 +110,7 @@ command line should like something like this: <pre> % cd build - % ../src/configure --prefix=$CFEINSTALL --disable-nls --disable-shared \ + % ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-nls --disable-shared \ --enable-languages=c,c++ --host=sparcv9-sun-solaris2.8 % gmake all-gcc % setenv LLVM_LIB_SEARCH_PATH `pwd`/gcc |