Module: sip-router
Branch: kamailio_3.0
Commit: 2bb3d716821cf1ccfba16792c1ae168031f73fbb
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=2bb3d71…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Wed Mar 10 17:30:39 2010 +0100
make: fix CPU reset in some conditions
In some cases like trying to build a package with debug config
(e.g. make cfg mode=debug; .... ; make deb), the CPU make variable
was reset resulting in a build failure. This happens because in
the debug config CPU is not set and hence is saved as empty.
Trying to build a package will start a sub-make which will try to
re-do the config without debugging (make cfg), but the CPU
variable with and empty value will be inherited from the
environment and thus the CPU?=something lines won't have any
effect.
The fix replaces CPU?=something with
$(call set_if_empty,CPU,something)
This works around having an empty CPU in the environment.
Reported-by: Jan Janak <jan(a)iptel.org>
(cherry picked from commit 0b2d2c6e99dac2bd171f1c24bfa6f285f6539273)
---
Makefile.defs | 45 ++++++++++++++++++++++++---------------------
1 files changed, 24 insertions(+), 21 deletions(-)
diff --git a/Makefile.defs b/Makefile.defs
index a6575a4..97824b5 100644
--- a/Makefile.defs
+++ b/Makefile.defs
@@ -115,8 +115,11 @@ ifeq ($(quiet),verbose)
$(info normal Makefile.defs exec)
endif # verbose
+# usage: $(call set_if_empty,VAR,value)
+set_if_empty=$(if $($(1)),,$(eval override $(1)=$(2)))
+
# flavour: sip-router, ser or kamailio
-FLAVOUR=kamailio
+$(call set_if_empty,FLAVOUR,kamailio)
#prefix for various configs and scripts
#config name/name-prefix for distributed configs
@@ -815,7 +818,7 @@ ifeq ($(CC_NAME), gcc)
CFLAGS=-g -O9 -funroll-loops -Wcast-align $(PROFILE)
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= athlon64
+$(call set_if_empty,CPU,athlon64)
CFLAGS+=-m32 -minline-all-stringops \
-falign-loops \
-ftree-vectorize \
@@ -825,7 +828,7 @@ ifeq ($(CC_SHORTVER), 4.2+)
else
#if gcc 4.0+
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= athlon64
+$(call set_if_empty,CPU,athlon64)
CFLAGS+=-m32 -minline-all-stringops \
-falign-loops \
-ftree-vectorize \
@@ -834,7 +837,7 @@ ifeq ($(CC_SHORTVER), 4.x)
else
#if gcc 3.4+
ifeq ($(CC_SHORTVER), 3.4)
- CPU ?= athlon
+$(call set_if_empty,CPU,athlon)
CFLAGS+=-m32 -minline-all-stringops \
-falign-loops \
-mtune=$(CPU)
@@ -842,7 +845,7 @@ ifeq ($(CC_SHORTVER), 3.4)
else
#if gcc 3.0+
ifeq ($(CC_SHORTVER), 3.0)
- CPU ?= athlon
+$(call set_if_empty,CPU,athlon)
CFLAGS+=-minline-all-stringops \
-falign-loops \
-mcpu=$(CPU)
@@ -890,7 +893,7 @@ ifeq ($(CC_NAME), gcc)
CFLAGS=-g -O9 -funroll-loops -Wcast-align $(PROFILE)
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= opteron
+$(call set_if_empty,CPU,opteron)
CFLAGS+=-m64 -minline-all-stringops \
-falign-loops \
-ftree-vectorize \
@@ -900,7 +903,7 @@ ifeq ($(CC_SHORTVER), 4.2+)
else
#if gcc 4.0+
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= opteron
+$(call set_if_empty,CPU,opteron)
CFLAGS+=-m64 -minline-all-stringops \
-falign-loops \
-ftree-vectorize \
@@ -909,14 +912,14 @@ ifeq ($(CC_SHORTVER), 4.x)
else
#if gcc 3.4
ifeq ($(CC_SHORTVER), 3.4)
- CPU ?= athlon64
+$(call set_if_empty,CPU,athlon64)
CFLAGS+=-m64 -minline-all-stringops \
-falign-loops
LDFLAGS+=-m64
else
#if gcc 3.0
ifeq ($(CC_SHORTVER), 3.0)
- CPU ?= athlon64
+$(call set_if_empty,CPU,athlon64)
CFLAGS+=-minline-all-stringops \
-falign-loops
#-mcpu=$(CPU) \ # not working on all x86_64 gccs
@@ -967,7 +970,7 @@ ifeq ($(CC_NAME), gcc)
#-Wmissing-prototypes
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= ultrasparc
+$(call set_if_empty,CPU,ultrasparc)
#use 32bit for now
CFLAGS+=-m64 -mcpu=ultrasparc \
-mtune=$(CPU) \
@@ -981,7 +984,7 @@ ifeq ($(CC_SHORTVER), 4.2+)
else
#if gcc 4.x
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= ultrasparc
+$(call set_if_empty,CPU,ultrasparc)
#use 32bit for now
CFLAGS+=-m64 -mcpu=ultrasparc \
-mtune=$(CPU) \
@@ -990,14 +993,14 @@ ifeq ($(CC_SHORTVER), 4.x)
else
#if gcc 3.4
ifeq ($(CC_SHORTVER), 3.4)
- CPU ?= ultrasparc
+$(call set_if_empty,CPU,ultrasparc)
#use 32bit for now
CFLAGS+=-m64 -mcpu=ultrasparc -mtune=$(CPU)
LDFLAGS+=-m64
else
#if gcc 3.0
ifeq ($(CC_SHORTVER), 3.0)
- CPU ?= ultrasparc
+$(call set_if_empty,CPU,ultrasparc)
#use 32bit for now
CFLAGS+=-m64 -mcpu=ultrasparc -mtune=$(CPU) \
# -mcpu=v9 or ultrasparc? # -mtune implied by -mcpu
@@ -1058,7 +1061,7 @@ ifeq ($(CC_NAME), gcc)
#-Wmissing-prototypes
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= v8
+$(call set_if_empty,CPU,v8)
#use 32bit for now
CFLAGS+= -mtune=$(CPU) \
-fno-strict-overflow \
@@ -1066,20 +1069,20 @@ ifeq ($(CC_SHORTVER), 4.2+)
else
#if gcc 4.x
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= v8
+$(call set_if_empty,CPU,v8)
#use 32bit for now
CFLAGS+= -mtune=$(CPU) \
-ftree-vectorize
else
#if gcc 3.4
ifeq ($(CC_SHORTVER), 3.4)
- CPU ?= v8
+$(call set_if_empty,CPU,v8)
#use 32bit for now
CFLAGS+= -mtune=$(CPU)
else
#if gcc 3.0
ifeq ($(CC_SHORTVER), 3.0)
- CPU ?= v8
+$(call set_if_empty,CPU,v8)
#use 32bit for now
CFLAGS+= -mtune=$(CPU) \
#-mno-epilogue #try to inline function exit code
@@ -1399,14 +1402,14 @@ ifeq ($(CC_NAME), gcc)
CFLAGS= -O9 -funroll-loops -fsigned-char $(PROFILE)
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= powerpc
+$(call set_if_empty,CPU,powerpc)
CFLAGS+=-ftree-vectorize \
-fno-strict-overflow \
-mtune=$(CPU) -maltivec
else
#if gcc 4.0+
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= powerpc
+$(call set_if_empty,CPU,powerpc)
CFLAGS+=-ftree-vectorize \
-mtune=$(CPU) -maltivec
else
@@ -1448,14 +1451,14 @@ ifeq ($(CC_NAME), gcc)
CFLAGS= -O9 -funroll-loops -fsigned-char $(PROFILE)
#if gcc 4.2+
ifeq ($(CC_SHORTVER), 4.2+)
- CPU ?= powerpc64
+$(call set_if_empty,CPU,powerpc64)
CFLAGS+=-ftree-vectorize \
-fno-strict-overflow \
-mtune=$(CPU) -maltivec
else
#if gcc 4.0+
ifeq ($(CC_SHORTVER), 4.x)
- CPU ?= powerpc64
+$(call set_if_empty,CPU,powerpc64)
CFLAGS+=-ftree-vectorize \
-mtune=$(CPU) -maltivec
else