[llvm-commits] CVS: llvm/Makefile.rules
Reid Spencer
reid at x10sys.com
Fri May 13 11:33:05 PDT 2005
Changes in directory llvm:
Makefile.rules updated: 1.308 -> 1.309
---
Log message:
* Make some warning messages stand out a bit by putting **** at the end
* Fix a typo that prevents BuildMode from being printed
---
Diffs of the changes: (+3 -3)
Makefile.rules | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/Makefile.rules
diff -u llvm/Makefile.rules:1.308 llvm/Makefile.rules:1.309
--- llvm/Makefile.rules:1.308 Thu Mar 10 22:15:18 2005
+++ llvm/Makefile.rules Fri May 13 13:32:54 2005
@@ -563,7 +563,7 @@
ifdef MODULE_NAME
ifeq ($(strip $(LLVMGCC)),)
-$(warning Modules require llvm-gcc but no llvm-gcc is available)
+$(warning Modules require llvm-gcc but no llvm-gcc is available ****)
else
Module := $(LibDir)/$(MODULE_NAME).bc
@@ -574,7 +574,7 @@
endif
$(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(GCCLD)
- $(Echo) Building $(BuildMOde) Bytecode Module $(notdir $@)
+ $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
$(Verb) $(LinkModule) -o $@ $(ObjectsBC)
all-local:: $(Module)
@@ -663,7 +663,7 @@
#---------------------------------------------------------
ifdef BYTECODE_LIBRARY
ifeq ($(strip $(LLVMGCC)),)
-$(warning Bytecode libraries require llvm-gcc which could not be found)
+$(warning Bytecode libraries require llvm-gcc which could not be found ****)
else
# make the C and C++ compilers strip debug info out of bytecode libraries.
More information about the llvm-commits
mailing list