[llvm-commits] CVS: llvm/Makefile.config.in

Reid Spencer reid at x10sys.com
Wed May 31 18:09:57 PDT 2006



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






More information about the llvm-commits mailing list