Commit e6db0f11 by Alan Mishchenko

Adding message prefix.

parent 2cdc5ab8
...@@ -3,9 +3,11 @@ CC := gcc ...@@ -3,9 +3,11 @@ CC := gcc
CXX := g++ CXX := g++
LD := $(CXX) LD := $(CXX)
$(info Using CC=$(CC)) MSG_PREFIX ?=
$(info Using CXX=$(CXX))
$(info Using LD=$(LD)) $(info $(MSG_PREFIX)Using CC=$(CC))
$(info $(MSG_PREFIX)Using CXX=$(CXX))
$(info $(MSG_PREFIX)Using LD=$(LD))
PROG := abc PROG := abc
...@@ -41,7 +43,6 @@ arch_flags : arch_flags.c ...@@ -41,7 +43,6 @@ arch_flags : arch_flags.c
ARCHFLAGS ?= $(shell $(CC) arch_flags.c -o arch_flags && ./arch_flags) ARCHFLAGS ?= $(shell $(CC) arch_flags.c -o arch_flags && ./arch_flags)
OPTFLAGS ?= -g -O #-DABC_NAMESPACE=xxx OPTFLAGS ?= -g -O #-DABC_NAMESPACE=xxx
MSG_PREFIX ?=
CFLAGS += -Wall -Wno-unused-function -Wno-write-strings -Wno-sign-compare $(OPTFLAGS) $(ARCHFLAGS) -Isrc CFLAGS += -Wall -Wno-unused-function -Wno-write-strings -Wno-sign-compare $(OPTFLAGS) $(ARCHFLAGS) -Isrc
...@@ -54,11 +55,11 @@ GCC_VERSION=$(shell $(CC) -dumpversion) ...@@ -54,11 +55,11 @@ GCC_VERSION=$(shell $(CC) -dumpversion)
GCC_MAJOR=$(word 1,$(subst .,$(space),$(GCC_VERSION))) GCC_MAJOR=$(word 1,$(subst .,$(space),$(GCC_VERSION)))
GCC_MINOR=$(word 2,$(subst .,$(space),$(GCC_VERSION))) GCC_MINOR=$(word 2,$(subst .,$(space),$(GCC_VERSION)))
$(info Found GCC_VERSION $(GCC_VERSION)) $(info $(MSG_PREFIX)Found GCC_VERSION $(GCC_VERSION))
ifeq ($(findstring $(GCC_MAJOR),0 1 2 3),) ifeq ($(findstring $(GCC_MAJOR),0 1 2 3),)
$(info Found GCC_MAJOR>=4) $(info $(MSG_PREFIX)Found GCC_MAJOR>=4)
ifeq ($(findstring $(GCC_MINOR),0 1 2 3 4 5),) ifeq ($(findstring $(GCC_MINOR),0 1 2 3 4 5),)
$(info Found GCC_MINOR>=6) $(info $(MSG_PREFIX)Found GCC_MINOR>=6)
CFLAGS += -Wno-unused-but-set-variable CFLAGS += -Wno-unused-but-set-variable
endif endif
endif endif
...@@ -81,7 +82,7 @@ CFLAGS += -DABC_USE_PTHREADS ...@@ -81,7 +82,7 @@ CFLAGS += -DABC_USE_PTHREADS
LIBS += -lpthread LIBS += -lpthread
endif endif
$(info Using CFLAGS=$(CFLAGS)) $(info $(MSG_PREFIX)Using CFLAGS=$(CFLAGS))
CXXFLAGS += $(CFLAGS) CXXFLAGS += $(CFLAGS)
SRC := SRC :=
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment