From 2998d3fde716816c1ac53675798af3bd5cf48fa8 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Wed, 10 Dec 2003 20:04:13 +0000 Subject: [PATCH 1/1] 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 --- docs/CFEBuildInstrs.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 4b6bb77d03f..be844b9da89 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -84,7 +84,7 @@ process, and you should only try to do it if:

% set CFEINSTALL = `pwd`/install -
  • Configure, build and install the C front-end:

    +
  • Configure, build, and install the C front-end:

    Linux/x86: @@ -92,7 +92,7 @@ process, and you should only try to do it if:

      % 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:
     
     
      % 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 
    -- 
    2.34.1