[llvm-commits] [llvm] r95763 - /llvm/trunk/examples/Makefile
Garrison Venn
gvenn.cfe.dev at gmail.com
Tue Feb 9 19:38:29 PST 2010
Author: gvenn
Date: Tue Feb 9 21:38:29 2010
New Revision: 95763
URL: http://llvm.org/viewvc/llvm-project?rev=95763&view=rev
Log:
Prevented build on WINDOWS using default make system. Stopped WINDOWS build
at eh llvm/examples level using if check on LLVM_ON_UNIX.
Modified:
llvm/trunk/examples/Makefile
Modified: llvm/trunk/examples/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Makefile?rev=95763&r1=95762&r2=95763&view=diff
==============================================================================
--- llvm/trunk/examples/Makefile (original)
+++ llvm/trunk/examples/Makefile Tue Feb 9 21:38:29 2010
@@ -10,11 +10,14 @@
include $(LEVEL)/Makefile.config
-PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker \
- ExceptionDemo
+PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker
ifeq ($(HAVE_PTHREAD),1)
PARALLEL_DIRS += ParallelJIT
endif
+ifeq ($(LLVM_ON_UNIX),1)
+PARALLEL_DIRS += ExceptionDemo
+endif
+
include $(LEVEL)/Makefile.common
More information about the llvm-commits
mailing list