diff options
author | 2016-09-28 13:26:53 +1000 | |
---|---|---|
committer | 2016-09-28 13:26:53 +1000 | |
commit | a08d5d2d4daccd4133877041ad67a886a036faf1 (patch) | |
tree | 4e4012ee4ab1373b0b9923f4c31f6f281b99b1c8 /docs/release/scripts/toolchain.lua | |
parent | c588af34884d637f672670962dec15d2c4106ed8 (diff) |
Update of files
Diffstat (limited to 'docs/release/scripts/toolchain.lua')
-rw-r--r-- | docs/release/scripts/toolchain.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/release/scripts/toolchain.lua b/docs/release/scripts/toolchain.lua index fc19060a5c8..eda81695c45 100644 --- a/docs/release/scripts/toolchain.lua +++ b/docs/release/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)\"", |