aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-13 18:32:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-13 18:32:54 +0000
commit0d255bd5ce35aa511c954a2234cd3a83d7c7d670 (patch)
tree281ad923234b54c4c5991052161f7b87c2609724
parent15792b0259ecf494314716cb523be6cd2dd295bc (diff)
* Make some warning messages stand out a bit by putting **** at the end
* Fix a typo that prevents BuildMode from being printed git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.rules6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 5fd539daaa..93313d6537 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -563,7 +563,7 @@ endif
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 @@ LinkModule += -Xlinker -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
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 @@ endif
#---------------------------------------------------------
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.