Changes in directory llvm:

Makefile.config.in updated: 1.57 -> 1.58
---
Log message:

Support correct build:
1. Capture the ENABLE_THREADS configure variable in Makefile.config
2. Use ENABLE_THREADS to avoid building ParallelJIT if threads are not
   present.


---
Diffs of the changes:  (+3 -0)

 Makefile.config.in |    3 +++
 1 files changed, 3 insertions(+)


Index: llvm/Makefile.config.in
diff -u llvm/Makefile.config.in:1.57 llvm/Makefile.config.in:1.58
--- llvm/Makefile.config.in:1.57        Sun Apr  9 18:39:43 2006
+++ llvm/Makefile.config.in     Wed May 31 20:09:43 2006
@@ -201,6 +201,9 @@
 # When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
 ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
 
+# Do we want to enable threads?
+ENABLE_THREADS := @ENABLE_THREADS@
+
 # This option tells the Makefiles to produce verbose output.
 # It essentially prints the commands that make is executing
 #VERBOSE = 1



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to