diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-01 00:37:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-01 00:37:14 +0000 |
commit | 1000b73397bd72b71ede338caf5b6379072d94a4 (patch) | |
tree | 5dda0d342d7e1d3011f7ad7c76c07e4a93a1681c /examples/Makefile | |
parent | 481169e7011b39708154713fe595e8d059c1586f (diff) |
For PR1019:
Add HAVE_PTHREAD to makefiles with support from configure and use it to
determine whether to build examples/ParallelJIT.
Patch by Anton Korobeynikov.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32054 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index a6530ee6f5a..873c5825abf 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -12,7 +12,7 @@ include $(LEVEL)/Makefile.config PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM -ifeq ($(ENABLE_THREADS),1) +ifeq ($(HAVE_PTHREAD),1) PARALLEL_DIRS += ParallelJIT endif |