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

2007-03-06 Thread Reid Spencer


Changes in directory llvm/examples:

Makefile updated: 1.9 -> 1.10
---
Log message:

Revert last patch. The examples build now.


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

 Makefile |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/examples/Makefile
diff -u llvm/examples/Makefile:1.9 llvm/examples/Makefile:1.10
--- llvm/examples/Makefile:1.9  Tue Mar  6 01:30:03 2007
+++ llvm/examples/Makefile  Tue Mar  6 11:26:14 2007
@@ -10,10 +10,10 @@
 
 include $(LEVEL)/Makefile.config
 
-#PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
+PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
 
 ifeq ($(HAVE_PTHREAD),1)
-#PARALLEL_DIRS += ParallelJIT 
+PARALLEL_DIRS += ParallelJIT 
 endif
 
 include $(LEVEL)/Makefile.common



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


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

2007-03-06 Thread Devang Patel


On Mar 6, 2007, at 9:19 AM, Reid Spencer wrote:


On Tue, 2007-03-06 at 01:30 -0600, Chris Lattner wrote:


Changes in directory llvm/examples:

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

temporarily disable this until Reid has a chance to fix it.


What's wrong with it?


From: [EMAIL PROTECTED]
Subject:[LLVMbugs] Build broke again
Date:   March 5, 2007 11:17:10 PM PST
To:   [EMAIL PROTECTED]

I'm getting this:

llvm[2]: Compiling fibonacci.cpp for Debug build
/Users/wendling/llvm/llvm.src/examples/Fibonacci/fibonacci.cpp: In
function 'int main(int, char**)':
/Users/wendling/llvm/llvm.src/examples/Fibonacci/fibonacci.cpp:115:
error: 'struct llvm::GenericValue' has no member named 'Int32Val'
/Users/wendling/llvm/llvm.src/examples/Fibonacci/fibonacci.cpp:119:
error: 'struct llvm::GenericValue' has no member named 'Int32Val'
make[2]: *** [/Users/wendling/llvm/llvm.obj/examples/Fibonacci/Debug/
fibonacci.o] Error 1
make[1]: *** [Fibonacci/.makeall] Error 2
make: *** [all] Error 1


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


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

2007-03-06 Thread Reid Spencer
On Tue, 2007-03-06 at 01:30 -0600, Chris Lattner wrote:
> 
> Changes in directory llvm/examples:
> 
> Makefile updated: 1.8 -> 1.9
> ---
> Log message:
> 
> temporarily disable this until Reid has a chance to fix it.

What's wrong with it?

> 
> 
> ---
> Diffs of the changes:  (+2 -2)
> 
>  Makefile |4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> 
> Index: llvm/examples/Makefile
> diff -u llvm/examples/Makefile:1.8 llvm/examples/Makefile:1.9
> --- llvm/examples/Makefile:1.8Thu Nov 30 18:37:14 2006
> +++ llvm/examples/MakefileTue Mar  6 01:30:03 2007
> @@ -10,10 +10,10 @@
>  
>  include $(LEVEL)/Makefile.config
>  
> -PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
> +#PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
>  
>  ifeq ($(HAVE_PTHREAD),1)
> -PARALLEL_DIRS += ParallelJIT 
> +#PARALLEL_DIRS += ParallelJIT 
>  endif
>  
>  include $(LEVEL)/Makefile.common
> 
> 
> 
> ___
> llvm-commits mailing list
> llvm-commits@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

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


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

2007-03-05 Thread Chris Lattner


Changes in directory llvm/examples:

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

temporarily disable this until Reid has a chance to fix it.


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

 Makefile |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/examples/Makefile
diff -u llvm/examples/Makefile:1.8 llvm/examples/Makefile:1.9
--- llvm/examples/Makefile:1.8  Thu Nov 30 18:37:14 2006
+++ llvm/examples/Makefile  Tue Mar  6 01:30:03 2007
@@ -10,10 +10,10 @@
 
 include $(LEVEL)/Makefile.config
 
-PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
+#PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
 
 ifeq ($(HAVE_PTHREAD),1)
-PARALLEL_DIRS += ParallelJIT 
+#PARALLEL_DIRS += ParallelJIT 
 endif
 
 include $(LEVEL)/Makefile.common



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


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

2006-11-30 Thread Reid Spencer


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
 



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


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

2006-05-31 Thread Reid Spencer


Changes in directory llvm/examples:

Makefile updated: 1.6 -> 1.7
---
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:  (+5 -2)

 Makefile |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)


Index: llvm/examples/Makefile
diff -u llvm/examples/Makefile:1.6 llvm/examples/Makefile:1.7
--- llvm/examples/Makefile:1.6  Tue Jul 12 16:51:34 2005
+++ llvm/examples/Makefile  Wed May 31 20:09:43 2006
@@ -10,7 +10,10 @@
 
 include $(LEVEL)/Makefile.config
 
-#PARALLEL_DIRS:= $(patsubst %/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
-PARALLEL_DIRS:= ParallelJIT Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
+PARALLEL_DIRS:= Fibonacci HowToUseJIT ModuleMaker BFtoLLVM
+
+ifeq ($(ENABLE_THREADS),1)
+PARALLEL_DIRS += ParallelJIT 
+endif
 
 include $(LEVEL)/Makefile.common



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