Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.22 -> 1.23
---
Log message:
Fix grammaro in output message.
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-config/Makefile
diff -u llvm/tools/llvm
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.21 -> 1.22
---
Log message:
Run GenLibDeps.pl with the configured PERL path to handle different install
locations for Perl on different systems.
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 inserti
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.20 -> 1.21
---
Log message:
Fixing a ">" redirect to be a ">>" redirect, so a sed command doesn't get
clobbered.
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: l
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.19 -> 1.20
llvm-config.in.in updated: 1.23 -> 1.24
---
Log message:
Add an option for getting the C compiler flags, --cflags.
Patch contributed by Chandler Carruth
---
Diffs of the changes: (+6 -0)
Makefile |2 ++
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.18 -> 1.19
---
Log message:
Fix PR1040: http://llvm.org/PR1040 :
Don't rebuild llvm-config if none of the library dependencies changed.
---
Diffs of the changes: (+8 -3)
Makefile | 11 ---
1 files changed, 8 inserti
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.17 -> 1.18
---
Log message:
reword message
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-config/Makefile
diff -u llvm/tools/llvm-config/Makefile:
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.16 -> 1.17
---
Log message:
If a cycle exists, don't succeed building the second time around.
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-confi
Anton,
Part of this patch is incorrect, please see below ..
On Fri, 2006-08-04 at 16:52 -0500, Anton Korobeynikov wrote:
>
> $(LibDeps): $(GenLibDeps) $(LibDir) $(wildcard $(LibDir)/*.a $(LibDir)/*.o)
> $(Echo) "Regenerating LibDeps.txt"
> - $(Verb) $(GenLibDeps) -flat $(LibDir) $(NM
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.15 -> 1.16
---
Log message:
Fixed typo. Thanks, Reid.
---
Diffs of the changes: (+1 -1)
Makefile |2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-config/Makefile
diff -u llvm/tools/llvm-confi
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.14 -> 1.15
find-cycles.pl updated: 1.5 -> 1.6
llvm-config.in.in updated: 1.20 -> 1.21
---
Log message:
Removed usage of "sort", which can lead to undeterministic behavior on mingw &
cygwin platforms.
---
Diffs of the changes:
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.13 -> 1.14
find-cycles.pl updated: 1.4 -> 1.5
---
Log message:
For PR845: http://llvm.org/PR845 :
Enable the makefile check on the result of find-cycles.pl. LLVM is now
cycle free and we intend to keep it that way. This patch will
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.12 -> 1.13
llvm-config.in.in updated: 1.18 -> 1.19
---
Log message:
Changes to support cross-compiling LLVM. The GenLibDeps.pl script needs to
have a compile-host version of "nm", not build-host. In order to effect this
we must us
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.11 -> 1.12
find-cycles.pl updated: 1.2 -> 1.3
---
Log message:
Make changes necessary for stopping the build if a cyclic library
dependency is found. The find-cycles.pl script now exits with a return code
that equals the number o
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.10 -> 1.11
---
Log message:
Tools require EH for their top-level try blocks.
---
Diffs of the changes: (+1 -0)
Makefile |1 +
1 files changed, 1 insertion(+)
Index: llvm/tools/llvm-config/Makefile
diff -u llvm/tools/llv
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.9 -> 1.10
---
Log message:
Make the llvm-config library dependency database depend on all of the libraries.
---
Diffs of the changes: (+4 -6)
Makefile | 10 --
1 files changed, 4 insertions(+), 6 deletions(-)
Inde
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.8 -> 1.9
llvm-config.in.in updated: 1.11 -> 1.12
---
Log message:
Capture the build mode (e.g. Debug/Release) in the llvm-config script.
---
Diffs of the changes: (+2 -0)
Makefile |1 +
llvm-config.in.in |1 +
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.7 -> 1.8
llvm-config.in.in updated: 1.4 -> 1.5
---
Log message:
Remove obsolete CORE_IS_ARCHIVE support
---
Diffs of the changes: (+4 -10)
Makefile |1 -
llvm-config.in.in | 13 -
2 files changed, 4
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.6 -> 1.7
---
Log message:
Build llvm-config into the ToolDir not in the local directory. This makes
it more likely to be in a developer's path and consistent with all the
other tools.
---
Diffs of the changes: (+6 -6)
Makefi
Changes in directory llvm/tools/llvm-config:
Makefile updated: 1.5 -> 1.6
FinalLibDeps.txt (r1.1) removed
LibDeps.txt (r1.3) removed
---
Log message:
For PR764: http://llvm.cs.uiuc.edu/PR764 :
Don't check in the LibDeps.txt and FinalLibDeps.txt files to CVS because
the content differs from plat
19 matches
Mail list logo