For PR432:

Add instructions for using the --program-prefix=llvm so that the CFE build
produces llvmgcc instead of gcc.

llvm-svn: 19083
This commit is contained in:
Reid Spencer 2004-12-21 18:50:54 +00:00
parent 6486fab16d
commit 7bb9d35be2
1 changed files with 4 additions and 3 deletions

View File

@ -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>