diff --git a/docs/CFEBuildInstrs.html b/docs/CFEBuildInstrs.html index 6fb989a04d9..6513a9fdcac 100644 --- a/docs/CFEBuildInstrs.html +++ b/docs/CFEBuildInstrs.html @@ -231,9 +231,9 @@ libgcc.a library, which you can find by running These are the commands you need.
% gmake - % mkdir $CFEINSTALL/bytecode-libs + % mkdir $CFEINSTALL/lib % gmake -C runtime install-bytecode - % setenv LLVM_LIB_SEARCH_PATH $CFEINSTALL/bytecode-libs + % setenv LLVM_LIB_SEARCH_PATH $CFEINSTALL/lib
Optionally, build a symbol table for the newly installed runtime diff --git a/docs/FAQ.html b/docs/FAQ.html index e43e3b22a57..9db6cc7d182 100644 --- a/docs/FAQ.html +++ b/docs/FAQ.html @@ -364,10 +364,10 @@ environment variable does not contain the libcrtend.a library. To fix it, verify that LLVM_LIB_SEARCH_PATH points to the correct directory and that libcrtend.a is inside. For pre-built LLVM GCC front ends, this should be the absolute path to -cfrontend/<platform>/llvm-gcc/bytecode-libs. If you've +cfrontend/<platform>/llvm-gcc/lib. If you've built your own LLVM GCC front end, then ensure that you've built and installed the libraries in llvm/runtime and have LLVM_LIB_SEARCH_PATH pointing -to the LLVMGCCDIR/bytecode-libs subdirectory. +to the $LLVMGCCDIR/lib subdirectory.
@@ -460,7 +460,7 @@ find libcrtend.a.In order to find libcrtend.a, you must have the directory in which it lives in your LLVM_LIB_SEARCH_PATH environment variable. For the binary distribution of -the LLVM GCC front end, this will be the full path of the bytecode-libs +the LLVM GCC front end, this will be the full path of the lib directory inside of the LLVM GCC distribution.
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index ef561f6416a..e57defd27ca 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -548,7 +548,7 @@ You can set these on the command line, or better yet, set them in your .cshrc or .profile.-5 3 * * * LLVM_LIB_SEARCH_PATH=.../llvm-gcc/bytecode-libs $HOME/llvm/utils/NightlyTest.pl -parallel -enable-linscan ...CVSREPOSTRING... $HOME/buildtest-X86 $HOME/cvs/testresults-X86 +5 3 * * * LLVM_LIB_SEARCH_PATH=.../llvm-gcc/lib $HOME/llvm/utils/NightlyTest.pl -parallel -enable-linscan ...CVSREPOSTRING... $HOME/buildtest-X86 $HOME/cvs/testresults-X86
Or, you can create a shell script to encapsulate the running of the script. @@ -488,7 +488,7 @@ export WEBDIR=$BASE/testresults export LLVMGCCDIR=/proj/work/llvm/cfrontend/install export PATH=/proj/install/bin:$LLVMGCCDIR/bin:$PATH export LD_LIBRARY_PATH=/proj/install/lib -export LLVM_LIB_SEARCH_PATH=/proj/work/llvm/cfrontend/install/bytecode-libs +export LLVM_LIB_SEARCH_PATH=/proj/work/llvm/cfrontend/install/lib cd $BASE cp /proj/work/llvm/llvm/utils/NightlyTest.pl . nice ./NightlyTest.pl -nice -release -verbose -parallel -enable-linscan -noexternals