mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +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
|
PRINTLDFLAGS+= -pagezero_size 10000 -image_base 100000000 #-Wl,-alias_list -Wl,$(SRC)/lunatic/aliases_list #-exported_symbols_list $(SRC)/lunatic/dynsymlist_osx
|
||||||
endif
|
endif
|
||||||
ifeq ($(PLATFORM),WINDOWS)
|
ifeq ($(PLATFORM),WINDOWS)
|
||||||
STRIP=
|
override STRIP=
|
||||||
MISCGAMEDEPS+= $(SRC)/lunatic/eduke32.def
|
MISCGAMEDEPS+= $(SRC)/lunatic/eduke32.def
|
||||||
GAMELDFLAGS+= $(SRC)/lunatic/eduke32.def
|
GAMELDFLAGS+= $(SRC)/lunatic/eduke32.def
|
||||||
MISCEDITORDEPS+= $(SRC)/lunatic/mapster32.def
|
MISCEDITORDEPS+= $(SRC)/lunatic/mapster32.def
|
||||||
EDITORLDFLAGS+= $(SRC)/lunatic/mapster32.def
|
EDITORLDFLAGS+= $(SRC)/lunatic/mapster32.def
|
||||||
endif
|
endif
|
||||||
ifeq ($(SUBPLATFORM),LINUX)
|
ifeq ($(SUBPLATFORM),LINUX)
|
||||||
STRIP=
|
override STRIP=
|
||||||
GAMELDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist
|
GAMELDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist
|
||||||
EDITORLDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist_m32
|
EDITORLDFLAGS+= -Wl,--dynamic-list=$(SRC)/lunatic/dynsymlist_m32
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -168,10 +168,10 @@ PROFILER?=0
|
||||||
MUDFLAP?=0
|
MUDFLAP?=0
|
||||||
|
|
||||||
ifeq ($(RELEASE),0)
|
ifeq ($(RELEASE),0)
|
||||||
STRIP=
|
override STRIP=
|
||||||
endif
|
endif
|
||||||
ifneq ($(DEBUGANYWAY),0)
|
ifneq ($(DEBUGANYWAY),0)
|
||||||
STRIP=
|
override STRIP=
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifndef LTO
|
ifndef LTO
|
||||||
|
|
Loading…
Reference in a new issue