diff options
-rw-r--r-- | scripts/toolchain.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index fc19060a5c8..eda81695c45 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -1040,30 +1040,30 @@ function strip() return true end - configuration { "osx-*", "Release" } + configuration { "osx-*" } postbuildcommands { "$(SILENT) echo Stripping symbols.", "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] and toolchainPrefix) .. "strip \"$(TARGET)\"", } - configuration { "android-*", "Release" } + configuration { "android-*" } postbuildcommands { "$(SILENT) echo Stripping symbols.", "$(SILENT) " .. toolchainPrefix .. "strip -s \"$(TARGET)\"" } - configuration { "linux-* or rpi", "Release" } + configuration { "linux-* or rpi" } postbuildcommands { "$(SILENT) echo Stripping symbols.", "$(SILENT) strip -s \"$(TARGET)\"" } - configuration { "mingw*", "x64", "Release" } + configuration { "mingw*", "x64" } postbuildcommands { "$(SILENT) echo Stripping symbols.", "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] or "$(MINGW64)/bin/") .. "strip -s \"$(TARGET)\"", } - configuration { "mingw*", "x32", "Release" } + configuration { "mingw*", "x32" } postbuildcommands { "$(SILENT) echo Stripping symbols.", "$(SILENT) " .. (_OPTIONS['TOOLCHAIN'] or "$(MINGW32)/bin/") .. "strip -s \"$(TARGET)\"", |