diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-21 18:50:54 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-21 18:50:54 +0000 |
commit | 2c1ce655d40cc4cc717b2971a611f348f9652dd4 (patch) | |
tree | 6ab3b57f9ffc8d2befc5ed9464fb4255d50b1bb7 /docs | |
parent | 37ee22046227a4f11fa324b1ceccd3e89e7c185b (diff) | |
download | external_llvm-2c1ce655d40cc4cc717b2971a611f348f9652dd4.zip external_llvm-2c1ce655d40cc4cc717b2971a611f348f9652dd4.tar.gz external_llvm-2c1ce655d40cc4cc717b2971a611f348f9652dd4.tar.bz2 |
For PR432:
Add instructions for using the --program-prefix=llvm so that the CFE build
produces llvmgcc instead of gcc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CFEBuildInstrs.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 68541ed..8ca5a3d 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -131,7 +131,7 @@ invalid code. Instead, use the system assembler and linker. <pre> % cd build % ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-nls \ - --disable-shared --enable-languages=c,c++ + --disable-shared --enable-languages=c,c++ --program-prefix=llvm % gmake all; gmake install </pre> @@ -140,7 +140,8 @@ invalid code. Instead, use the system assembler and linker. <pre> % cd build % ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-nls \ - --disable-shared --enable-languages=c,c++ --disable-c-mbchar + --disable-shared --enable-languages=c,c++ --disable-c-mbchar \ + --program-prefix=llvm % gmake all; gmake install </pre> @@ -158,7 +159,7 @@ functions from C as referenced from C++, so we typically configure with % cd build % ../src/configure --prefix=$CFEINSTALL --disable-threads --disable-nls \ --disable-shared --enable-languages=c,c++ --host=sparcv9-sun-solaris2.8 \ - --disable-c-mbchar + --disable-c-mbchar --program-prefix=llvm % gmake all; gmake install </pre> |