diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-15 00:14:01 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-15 00:14:01 +0000 |
commit | 360d6b71a3fbaa5ad403d4b598126b4a537d7583 (patch) | |
tree | e48f7b9847ac51785ed46f1bccd07f9f8c503289 /llvm/docs/TestingGuide.html | |
parent | 05d4d6026c112aa9f7968562856a95caf689c12a (diff) | |
download | bcm5719-llvm-360d6b71a3fbaa5ad403d4b598126b4a537d7583.tar.gz bcm5719-llvm-360d6b71a3fbaa5ad403d4b598126b4a537d7583.zip |
Remove most references to LLVM_LIB_SEARCH_PATH. It now only exists in the
GettingStarted.html document in the environment section and only as an
optional feature.
llvm-svn: 18944
Diffstat (limited to 'llvm/docs/TestingGuide.html')
-rw-r--r-- | llvm/docs/TestingGuide.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/docs/TestingGuide.html b/llvm/docs/TestingGuide.html index 1ebe0b54242..5979d3ec8a2 100644 --- a/llvm/docs/TestingGuide.html +++ b/llvm/docs/TestingGuide.html @@ -474,7 +474,7 @@ file. We usually run it from a crontab entry that looks ilke this: </p> <pre> -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 +5 3 * * * $HOME/llvm/utils/NightlyTest.pl -parallel -enable-linscan ...CVSREPOSTORY... $HOME/buildtest-X86 $HOME/cvs/testresults-X86 </pre> <p>Or, you can create a shell script to encapsulate the running of the script. @@ -488,7 +488,6 @@ 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/lib cd $BASE cp /proj/work/llvm/llvm/utils/NightlyTest.pl . nice ./NightlyTest.pl -nice -release -verbose -parallel -enable-linscan -noexternals |