diff options
author | Nathan Ringo <nathan@remexre.com> | 2024-09-01 21:40:34 -0500 |
---|---|---|
committer | Nathan Ringo <nathan@remexre.com> | 2024-09-01 21:40:34 -0500 |
commit | 158b7123b6a50b2e8d37529e01ccd94c9106c11a (patch) | |
tree | 9af446b259b8ac99524843e215513355668908ef /crates/Cargo.toml | |
parent | 8cb34498eceef231927c444507b6787128c5f0d8 (diff) |
Fix debuginfo and restore apps.
Diffstat (limited to 'crates/Cargo.toml')
-rw-r--r-- | crates/Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/Cargo.toml b/crates/Cargo.toml index 855d815..dd1f42a 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -1,3 +1,9 @@ [workspace] members = ["alloc_buddy", "alloc_physmem_free_list", "device_tree", "driver_riscv_timer", "kernel", "utils"] resolver = "2" + +[profile.release] +codegen-units = 1 +debug = true +lto = true +overflow-checks = true |