diff options
author | 2015-11-02 21:08:15 -0600 | |
---|---|---|
committer | 2016-02-15 12:09:48 -0600 | |
commit | 3570d4f0ebde2977fb8301f8f9a1c942cb149b17 (patch) | |
tree | 39d505133f3f57dd7fcf3921e396da786aedc336 /scripts/src/osd/sdl.lua | |
parent | 36df7413dce0897215d3e01e54ac5334bb65d965 (diff) |
check STRIP_SYMBOLS in strip function and add strip support for osx (nw)
Diffstat (limited to 'scripts/src/osd/sdl.lua')
-rw-r--r-- | scripts/src/osd/sdl.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/src/osd/sdl.lua b/scripts/src/osd/sdl.lua index 6a63e7caf91..8ac53f39173 100644 --- a/scripts/src/osd/sdl.lua +++ b/scripts/src/osd/sdl.lua @@ -565,6 +565,8 @@ if _OPTIONS["with-tools"] then MAME_DIR .. "src/osd/sdl/SDLMain_tmpl.mm", } end + + strip() end @@ -606,4 +608,6 @@ if _OPTIONS["targetos"] == "macosx" and _OPTIONS["with-tools"] then files { MAME_DIR .. "src/osd/sdl/aueffectutil.mm", } + + strip() end |