[llvm-commits] CVS: llvm/Makefile

2007-04-14 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.72 -> 1.73 --- Log message: Echo command lines only if the user wants them. --- Diffs of the changes: (+2 -2) Makefile |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm/Makefile diff -u llvm/Makefile:1.72 llvm/Makefil

[llvm-commits] CVS: llvm/Makefile

2007-04-14 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.71 -> 1.72 --- Log message: Add a new testing target: check-one. It is used like this: make check-one TESTONE=test/path/to/test.ll This runs a single check in exactly the same way that dejagnu runs it. --- Diffs of the changes: (+3 -0) Makef

[llvm-commits] CVS: llvm/Makefile

2007-03-29 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.70 -> 1.71 --- Log message: don't build runtime for now, ever --- Diffs of the changes: (+5 -3) Makefile |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) Index: llvm/Makefile diff -u llvm/Makefile:1.70 llvm/Makefile:1.71 ---

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

2007-02-20 Thread Reid Spencer
On Tue, 2007-02-20 at 23:23 -0800, Chris Lattner wrote: > >> revert r1.68. This breaks 'make install' without doing 'make' > >> first, but > >> fixes PR1208: http://llvm.org/PR1208 . > > > > This isn't correct. > > I'm aware of that, which is why I mentioned that in the commit > message. I'm

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

2007-02-20 Thread Chris Lattner
>> revert r1.68. This breaks 'make install' without doing 'make' >> first, but >> fixes PR1208: http://llvm.org/PR1208 . > > This isn't correct. I'm aware of that, which is why I mentioned that in the commit message. I'm just repairing the regression by reverting the offending patch: if yo

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

2007-02-20 Thread Reid Spencer
On Wed, 2007-02-21 at 00:23 -0600, Chris Lattner wrote: > > Changes in directory llvm: > > Makefile updated: 1.69 -> 1.70 > --- > Log message: > > revert r1.68. This breaks 'make install' without doing 'make' first, but > fixes PR1208: http://llvm.org/PR1208 . This isn't correct. I implemented

[llvm-commits] CVS: llvm/Makefile

2007-02-20 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.69 -> 1.70 --- Log message: revert r1.68. This breaks 'make install' without doing 'make' first, but fixes PR1208: http://llvm.org/PR1208 . --- Diffs of the changes: (+7 -0) Makefile |7 +++ 1 files changed, 7 insertions(+) Index: l

[llvm-commits] CVS: llvm/Makefile

2007-02-05 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.68 -> 1.69 --- Log message: Add a show-footprint target to run du a few times to show how much disk space a build tree's objects are consuming. --- Diffs of the changes: (+6 -0) Makefile |6 ++ 1 files changed, 6 insertions(+) Index:

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

2007-02-05 Thread Reid Spencer
On Mon, 2007-02-05 at 10:27 -0800, Chris Lattner wrote: > > Don't prevent install target from descending into the utils directory. > > It prevents "make install" on a clean directory from working. > > Does this change what gets installed into PREFIX? Perhaps. It might cause tblgen to be installed

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

2007-02-05 Thread Chris Lattner
On Feb 5, 2007, at 10:39 AM, Reid Spencer wrote: > On Mon, 2007-02-05 at 10:27 -0800, Chris Lattner wrote: >>> Don't prevent install target from descending into the utils >>> directory. >>> It prevents "make install" on a clean directory from working. >> >> Does this change what gets installed

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

2007-02-05 Thread Chris Lattner
> Don't prevent install target from descending into the utils directory. > It prevents "make install" on a clean directory from working. Does this change what gets installed into PREFIX? -Chris > > --- > Diffs of the changes: (+0 -7) > > Makefile |7 --- > 1 files changed, 7 deletions(

[llvm-commits] CVS: llvm/Makefile

2007-02-05 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.67 -> 1.68 --- Log message: Don't prevent install target from descending into the utils directory. It prevents "make install" on a clean directory from working. --- Diffs of the changes: (+0 -7) Makefile |7 --- 1 files changed, 7 dele

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

2006-11-16 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.66 -> 1.67 Makefile.config.in updated: 1.67 -> 1.68 Makefile.rules updated: 1.411 -> 1.412 configure updated: 1.256 -> 1.257 --- Log message: Undo removal of the runtime libraries. While this may have been a bit premature, these libraries will be g

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

2006-11-16 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.65 -> 1.66 Makefile.config.in updated: 1.66 -> 1.67 Makefile.rules updated: 1.410 -> 1.411 configure updated: 1.255 -> 1.256 --- Log message: In LLVM 2.0 we won't use the runtime libraries as llvm-gcc3 support will be dropped. This patch pertains t

[llvm-commits] CVS: llvm/Makefile

2006-09-03 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.64 -> 1.65 --- Log message: Document build order dependencies. Make sure that llvm-config is built before tools. --- Diffs of the changes: (+12 -1) Makefile | 13 - 1 files changed, 12 insertions(+), 1 deletion(-) Index: llvm/

[llvm-commits] CVS: llvm/Makefile

2006-08-15 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.63 -> 1.64 --- Log message: Add .PHONY targets for building source and binary RPM packages. You can now just "make rpm" or "make srpm" and it will build them. --- Diffs of the changes: (+7 -0) Makefile |7 +++ 1 files changed, 7 inser

[llvm-commits] CVS: llvm/Makefile

2006-07-26 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.62 -> 1.63 --- Log message: Revamp this to use filter-out, which makes the logic simpler and not nested. This restores building of examples and projects! --- Diffs of the changes: (+18 -21) Makefile | 39 ++--

[llvm-commits] CVS: llvm/Makefile

2006-06-02 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.61 -> 1.62 --- Log message: More of PR728: http://llvm.cs.uiuc.edu/PR728 , don't install utils either. --- Diffs of the changes: (+14 -4) Makefile | 18 ++ 1 files changed, 14 insertions(+), 4 deletions(-) Index: llvm/Makef

[llvm-commits] CVS: llvm/Makefile

2006-06-02 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.60 -> 1.61 --- Log message: Part of PR728: http://llvm.cs.uiuc.edu/PR728 , don't install examples or projects. --- Diffs of the changes: (+5 -1) Makefile |6 +- 1 files changed, 5 insertions(+), 1 deletion(-) Index: llvm/Makefile di

[llvm-commits] CVS: llvm/Makefile

2006-06-01 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.59 -> 1.60 --- Log message: Make a shorthand target for running the llvm2cpp test suite. This test suite is disabled by default because of the length of time it takes to run. To enable it certain command line fu must be used. This patch just encode

[llvm-commits] CVS: llvm/Makefile Makefile.rules

2006-05-17 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.58 -> 1.59 Makefile.rules updated: 1.369 -> 1.370 --- Log message: Make some changes suggested by Chris: 1. Remove the LLVM_DO_NOT_BUILD feature (not needed any more) 2. Ensure that lib/VMCore gets built first. This needs to be done because VMCo

[llvm-commits] CVS: llvm/Makefile

2006-04-12 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.57 -> 1.58 --- Log message: Include the win32 and Xcode directories in the distribution. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/Makefile diff -u llvm/Makefile:1.57 llv

[llvm-commits] CVS: llvm/Makefile

2006-04-07 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.56 -> 1.57 --- Log message: Fix recursion: 1. Make setting OPTIONAL_DIRS use immediate assignment 2. Include Makefile.config before ifeq tests and then Makefile.rules later instead of Makefile.common up front. This ensures that the variable

[llvm-commits] CVS: llvm/Makefile

2006-04-07 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.55 -> 1.56 --- Log message: Don't build projects/examples if libs-only was specified. --- Diffs of the changes: (+1 -1) Makefile |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/Makefile diff -u llvm/Makefile:1.55 llvm/M

[llvm-commits] CVS: llvm/Makefile

2006-04-07 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.54 -> 1.55 --- Log message: Invert the tests on LLVMGCC_MAJVERS to check for value 4 instead of value 3. This ensures that if llvm-gcc isn't available and consequently the value of LLVMGCC_MAJVERS is blank, that the old (include runtime) behavior w

[llvm-commits] CVS: llvm/Makefile

2006-04-07 Thread Chris Lattner
Changes in directory llvm: Makefile updated: 1.53 -> 1.54 --- Log message: THis -> This --- Diffs of the changes: (+3 -2) Makefile |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) Index: llvm/Makefile diff -u llvm/Makefile:1.53 llvm/Makefile:1.54 --- llvm/Makefile:1.53 Fri

[llvm-commits] CVS: llvm/Makefile

2006-04-07 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.52 -> 1.53 --- Log message: For PR723: http://llvm.cs.uiuc.edu/PR723 : Print out something at the end of the build that indicates what kind of build has just completed. --- Diffs of the changes: (+10 -0) Makefile | 10 ++ 1 files cha

[llvm-commits] CVS: llvm/Makefile

2006-04-06 Thread Reid Spencer
Changes in directory llvm: Makefile updated: 1.51 -> 1.52 --- Log message: Avoid building the runtime libraries if llvm-gcc version 4 is detected. --- Diffs of the changes: (+11 -6) Makefile | 17 +++-- 1 files changed, 11 insertions(+), 6 deletions(-) Index: llvm/Makefile