mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-22 06:14:02 -07:00
allow CXXFLAGS to be set separately
This commit is contained in:
parent
daafb65920
commit
e30192d082
3 changed files with 6 additions and 3 deletions
|
@ -34,7 +34,8 @@ else
|
||||||
STRIP=strip --strip-all
|
STRIP=strip --strip-all
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CXXFLAGS=$(CFLAGS) -fno-rtti
|
CXXFLAGS?=-fno-rtti
|
||||||
|
CXXFLAGS=$(CFLAGS)
|
||||||
|
|
||||||
all: one
|
all: one
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,8 @@ endif
|
||||||
#LDFLAGS=
|
#LDFLAGS=
|
||||||
#STRIP=echo
|
#STRIP=echo
|
||||||
|
|
||||||
CXXFLAGS=$(CFLAGS) -fno-rtti
|
CXXFLAGS?=-fno-rtti
|
||||||
|
CXXFLAGS+=$(CFLAGS)
|
||||||
|
|
||||||
all: one
|
all: one
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,8 @@ else
|
||||||
STRIP=strip
|
STRIP=strip
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CXXFLAGS=$(CFLAGS) -fno-rtti
|
CXXFLAGS?=-fno-rtti
|
||||||
|
CXXFLAGS=$(CFLAGS)
|
||||||
|
|
||||||
all: one
|
all: one
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue