[llvm-commits] CVS: llvm/examples/Makefile

Reid Spencer reid at x10sys.com
Thu Nov 30 16:37:31 PST 2006



Changes in directory llvm/examples:

Makefile updated: 1.7 -> 1.8
---
Log message:

For PR1019: http://llvm.org/PR1019 :
Add HAVE_PTHREAD to makefiles with support from configure and use it to
determine whether to build examples/ParallelJIT.
Patch by Anton Korobeynikov.


---
Diffs of the changes:  (+1 -1)

 Makefile |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/examples/Makefile
diff -u llvm/examples/Makefile:1.7 llvm/examples/Makefile:1.8
--- llvm/examples/Makefile:1.7	Wed May 31 20:09:43 2006
+++ llvm/examples/Makefile	Thu Nov 30 18:37:14 2006
@@ -12,7 +12,7 @@
 
 PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
 
-ifeq ($(ENABLE_THREADS),1)
+ifeq ($(HAVE_PTHREAD),1)
 PARALLEL_DIRS += ParallelJIT 
 endif
 






More information about the llvm-commits mailing list