mirror of
https://github.com/holub/mame
synced 2025-06-14 16:37:00 +03:00
Renamed to STRIP_SYMBOLS and made logic more clear (nw)
This commit is contained in:
parent
98297ad03d
commit
3827f898ab
6
makefile
6
makefile
@ -77,7 +77,7 @@
|
|||||||
# SEPARATE_BIN = 1
|
# SEPARATE_BIN = 1
|
||||||
# PYTHON_EXECUTABLE = python3
|
# PYTHON_EXECUTABLE = python3
|
||||||
# SHADOW_CHECK = 1
|
# SHADOW_CHECK = 1
|
||||||
# NO_STRIPPING = 1
|
# STRIP_SYMBOLS = 0
|
||||||
|
|
||||||
# QT_HOME = /usr/lib64/qt48/
|
# QT_HOME = /usr/lib64/qt48/
|
||||||
|
|
||||||
@ -539,8 +539,8 @@ ifdef SHADOW_CHECK
|
|||||||
PARAMS += --SHADOW_CHECK='$(SHADOW_CHECK)'
|
PARAMS += --SHADOW_CHECK='$(SHADOW_CHECK)'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef NO_STRIPPING
|
ifdef STRIP_SYMBOLS
|
||||||
PARAMS += --NO_STRIPPING='$(NO_STRIPPING)'
|
PARAMS += --STRIP_SYMBOLS='$(STRIP_SYMBOLS)'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef QT_HOME
|
ifdef QT_HOME
|
||||||
|
@ -288,11 +288,11 @@ newoption {
|
|||||||
}
|
}
|
||||||
|
|
||||||
newoption {
|
newoption {
|
||||||
trigger = "NO_STRIPPING",
|
trigger = "STRIP_SYMBOLS",
|
||||||
description = "Stripping.",
|
description = "Symbols stripping.",
|
||||||
allowed = {
|
allowed = {
|
||||||
{ "0", "Enabled" },
|
{ "0", "Disabled" },
|
||||||
{ "1", "Disabled" },
|
{ "1", "Enabled" },
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1148,7 +1148,7 @@ else
|
|||||||
end
|
end
|
||||||
mainProject(_OPTIONS["target"],_OPTIONS["subtarget"])
|
mainProject(_OPTIONS["target"],_OPTIONS["subtarget"])
|
||||||
|
|
||||||
if (_OPTIONS["NO_STRIPPING"]~="1") then
|
if (_OPTIONS["STRIP_SYMBOLS"]== nil or _OPTIONS["STRIP_SYMBOLS"]=="1") then
|
||||||
strip()
|
strip()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user