diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-27 09:59:53 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-27 09:59:53 +0100 |
commit | bfb06e17acd4bcb623ad5656490a7a1971980441 (patch) | |
tree | 3adb53528c85bbc19d156d81a22dfb68b23fbd57 /xtask/src | |
parent | a9a978e0bb418b540bd4ede0cc5a16bfb1c79baf (diff) | |
parent | 7d8f701e99885c8d972f05311f9a7ac7a8dda180 (diff) |
Merge #9022
9022: internal: disable debuginfo afterall r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/dist.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs index 7ac9ae5b8..3a67294c5 100644 --- a/xtask/src/dist.rs +++ b/xtask/src/dist.rs | |||
@@ -67,7 +67,11 @@ fn dist_client(version: &str, release_tag: &str) -> Result<()> { | |||
67 | fn dist_server(release_channel: &str) -> Result<()> { | 67 | fn dist_server(release_channel: &str) -> Result<()> { |
68 | let _e = pushenv("RUST_ANALYZER_CHANNEL", release_channel); | 68 | let _e = pushenv("RUST_ANALYZER_CHANNEL", release_channel); |
69 | let _e = pushenv("CARGO_PROFILE_RELEASE_LTO", "thin"); | 69 | let _e = pushenv("CARGO_PROFILE_RELEASE_LTO", "thin"); |
70 | let _e = pushenv("CARGO_PROFILE_RELEASE_DEBUG", "1"); | 70 | |
71 | // Uncomment to enable debug info for releases. Note that: | ||
72 | // * debug info is split on windows and macs, so it does nothing for those platforms, | ||
73 | // * on Linux, this blows up the binary size from 8MB to 43MB, which is unreasonable. | ||
74 | // let _e = pushenv("CARGO_PROFILE_RELEASE_DEBUG", "1"); | ||
71 | 75 | ||
72 | let target = get_target(); | 76 | let target = get_target(); |
73 | if target.contains("-linux-gnu") || target.contains("-linux-musl") { | 77 | if target.contains("-linux-gnu") || target.contains("-linux-musl") { |