mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
Makefiles: fix wrongly stripping debug binaries...
... when 'make' is invoked like "make ... STRIP=some_strip". git-svn-id: https://svn.eduke32.com/eduke32@3423 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
17d62458f4
commit
f10a0fb086
2 changed files with 4 additions and 4 deletions
|
@ -172,14 +172,14 @@ ifneq (0,$(LUNATIC))
|
|||
PRINTLDFLAGS+= -pagezero_size 10000 -image_base 100000000 #-Wl,-alias_list -Wl,$(SRC)/lunatic/aliases_list #-exported_symbols_list $(SRC)/lunatic/dynsymlist_osx
|
||||
endif
|
||||
ifeq ($(PLATFORM),WINDOWS)
|
||||
STRIP=
|
||||
override STRIP=
|
||||
MISCGAMEDEPS+= $(SRC)/lunatic/eduke32.def
|
||||
GAMELDFLAGS+= $(SRC)/lunatic/eduke32.def
|
||||
MISCEDITORDEPS+= $(SRC)/lunatic/mapster32.def
|
||||
EDITORLDFLAGS+= $(SRC)/lunatic/mapster32.def
|
||||
endif
|
||||
ifeq ($(SUBPLATFORM),LINUX)
|
||||
STRIP=
|
||||
override STRIP=
|
||||
GAMELDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist
|
||||
EDITORLDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist_m32
|
||||
endif
|
||||
|
|
|
@ -168,10 +168,10 @@ PROFILER?=0
|
|||
MUDFLAP?=0
|
||||
|
||||
ifeq ($(RELEASE),0)
|
||||
STRIP=
|
||||
override STRIP=
|
||||
endif
|
||||
ifneq ($(DEBUGANYWAY),0)
|
||||
STRIP=
|
||||
override STRIP=
|
||||
endif
|
||||
|
||||
ifndef LTO
|
||||
|
|
Loading…
Reference in a new issue