strip symbols when compiling

This commit is contained in:
Tanaka Zakku
2022-06-07 10:51:34 +09:00
parent d00737c033
commit 865761f35d
3 changed files with 14 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
# 変更点
## v1.3.1 [2022/xx/xx]
**改善:**
- LinuxとmacOSのバイナリサイズをより小さくするために、デバッグシンボルをストリップします。(#568) (@YamatoSecurity)
## v1.3.0 [2022/06/06]
**新機能:**

View File

@@ -1,5 +1,11 @@
# Changes
## v1.3.1 [2022/xx/xx]
**Enhancements:**
- Strip debug symbols by default for smaller Linux and macOS binaries. (#568) (@YamatoSecurity)
## v1.3.0 [2022/06/06]
**New Features:**

View File

@@ -45,4 +45,5 @@ static_vcruntime = "2.0"
openssl = { version = "*", features = ["vendored"] } #vendored is needed to compile statically.
[profile.release]
lto = true
lto = true
strip = "symbols"