summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-10-24 20:17:46 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-10-24 20:17:46 +0000
commit58b83e1b7384776a593d75139c64a9b2c37f6fb8 (patch)
treef7e09980ba5211a063c99df0b487e70c64b1e5bb
parent1cdf0a25956884ad7e5ca8e3328a36dc54655963 (diff)
downloadllvm-release_1.tar.gz
Added an answer about running the tests.release_1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_1@9498 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/FAQ.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/FAQ.html b/docs/FAQ.html
index ae9188a313f1..ba71573e8b68 100644
--- a/docs/FAQ.html
+++ b/docs/FAQ.html
@@ -138,6 +138,20 @@ LLVM: Frequently Asked Questions
cases, this takes care of the problem. To do this, just type <tt>make
clean</tt> and then <tt>make</tt> in the directory that fails to build.
<p>
+
+ <dt><b>I've built LLVM and am testing it, but the tests freeze.</b>
+ <dd>
+ This is most likely occurring because you built a profile or release
+ (optimized) build of LLVM and have not specified the same information on
+ the <tt>gmake</tt> command line.
+ <p>
+ For example, if you built LLVM with the command:
+ <p>
+ <tt>gmake ENABLE_PROFILING=1</tt>
+ <p>
+ ...then you must run the tests with the following commands:
+ <p>
+ <tt>cd llvm/test<br>gmake ENABLE_PROFILING=1</tt>
</dl>
<hr>