diff options
author | Zach van Rijn <me@zv.io> | 2024-09-01 05:04:01 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-10-17 00:58:49 -0500 |
commit | 2f6e4b9caf98ecd5025e6f2fd7dbfb15b515a358 (patch) | |
tree | 24617227f91b873d3e3b2862300059b6a03e6ad3 /bootstrap/rust-1.73 | |
parent | 62fafef7749dd7c1d07c73afc240ca3edd087770 (diff) | |
download | packages-2f6e4b9caf98ecd5025e6f2fd7dbfb15b515a358.tar.gz packages-2f6e4b9caf98ecd5025e6f2fd7dbfb15b515a358.tar.bz2 packages-2f6e4b9caf98ecd5025e6f2fd7dbfb15b515a358.tar.xz packages-2f6e4b9caf98ecd5025e6f2fd7dbfb15b515a358.zip |
bootstrap/rust-1.7x: Reduce debug information
This still provides debug information, but prevents runaway memory
usage which was causing 32-bit builders to fail.
Closes: #1249
Diffstat (limited to 'bootstrap/rust-1.73')
-rw-r--r-- | bootstrap/rust-1.73/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/rust-1.73/APKBUILD b/bootstrap/rust-1.73/APKBUILD index 2fd72f256..4255d811c 100644 --- a/bootstrap/rust-1.73/APKBUILD +++ b/bootstrap/rust-1.73/APKBUILD @@ -90,7 +90,7 @@ build() { optimize = true debug = false codegen-units = 1 - debuginfo-level = 2 + debuginfo-level = 1 debuginfo-level-rustc = 0 debuginfo-level-tests = 0 backtrace = true |