diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-14 22:07:29 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-14 22:07:29 +0000 |
commit | 201ddef2eaf2b9391b7cd1ae5de361b93c8c3ef7 (patch) | |
tree | fb85b8f2b44fe1640ba23efc7501a3c28da74340 /docs/TestingGuide.html | |
parent | 0ce8580fcd23839b69eb36af7b0cb789be4b2763 (diff) | |
download | external_llvm-201ddef2eaf2b9391b7cd1ae5de361b93c8c3ef7.zip external_llvm-201ddef2eaf2b9391b7cd1ae5de361b93c8c3ef7.tar.gz external_llvm-201ddef2eaf2b9391b7cd1ae5de361b93c8c3ef7.tar.bz2 |
Correct documentation to reflect the change in location of the CFE runtime
libraries. They are now in $CFEINSTALL/lib not $CFEINSTALL/bytecode-lib.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18939 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/TestingGuide.html')
-rw-r--r-- | docs/TestingGuide.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index ca48bd4..1ebe0b5 100644 --- a/docs/TestingGuide.html +++ b/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/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 </pre> <p>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 |