summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/toolchain.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2016-09-28 13:26:53 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2016-09-28 13:26:53 +1000
commita08d5d2d4daccd4133877041ad67a886a036faf1 (patch)
tree4e4012ee4ab1373b0b9923f4c31f6f281b99b1c8 /docs/release/scripts/toolchain.lua
parentc588af34884d637f672670962dec15d2c4106ed8 (diff)
Update of files
Diffstat (limited to 'docs/release/scripts/toolchain.lua')
-rw-r--r--docs/release/scripts/toolchain.lua10
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)\"",