From: Misha Brukman Date: Sat, 3 Jan 2009 02:35:05 +0000 (+0000) Subject: * Wrap command line flag in X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b0fa430e1f8e29ea2b5f66f5eaaf5d57994de62e;p=oota-llvm.git * Wrap command line flag in * Wrapped long lines in code section git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61601 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/GCCFEBuildInstrs.html b/docs/GCCFEBuildInstrs.html index c93f90b43d6..8de21f80073 100644 --- a/docs/GCCFEBuildInstrs.html +++ b/docs/GCCFEBuildInstrs.html @@ -191,11 +191,13 @@ cd llvm-gcc-4.2-objects
  • Configure llvm-gcc (here it is configured to install into /usr/local). The --enable-checking flag turns on sanity checks inside the compiler. If you omit it then LLVM should be built with make ENABLE_OPTIMIZED=1. - Additional languages can be appended to the --enable-languages switch, + Additional languages can be appended to the --enable-languages switch, for example --enable-languages=ada,c,c++.

    -../llvm-gcc-4.2/configure --prefix=/usr/local --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-bootstrap --disable-multilib
    +../llvm-gcc-4.2/configure --prefix=/usr/local --enable-languages=ada,c \
    +                          --enable-checking --enable-llvm=$PWD/../llvm-objects \
    +			  --disable-bootstrap --disable-multilib
     

    If you have a multi-compiler setup, then you can configure like this:

    @@ -203,7 +205,9 @@ cd llvm-gcc-4.2-objects
     export CC=PATH_TO_C_AND_ADA_COMPILER
     export CXX=PATH_TO_C++_COMPILER
    -../llvm-gcc-4.2/configure --prefix=/usr/local --enable-languages=ada,c --enable-checking --enable-llvm=$PWD/../llvm-objects --disable-bootstrap --disable-multilib
    +../llvm-gcc-4.2/configure --prefix=/usr/local --enable-languages=ada,c \
    +                          --enable-checking --enable-llvm=$PWD/../llvm-objects \
    +			  --disable-bootstrap --disable-multilib