File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -38,3 +38,5 @@ compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]
38
38
compiler-builtins-weak-intrinsics = [" compiler_builtins/weak-intrinsics" ]
39
39
# Make panics and failed asserts immediately abort without formatting any message
40
40
panic_immediate_abort = []
41
+ # Choose algorithms that are optimized for binary size instead of runtime performance
42
+ optimize_for_size = []
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ system-llvm-libunwind = ["unwind/system-llvm-libunwind"]
81
81
82
82
# Make panics and failed asserts immediately abort without formatting any message
83
83
panic_immediate_abort = [" core/panic_immediate_abort" , " alloc/panic_immediate_abort" ]
84
+ # Choose algorithms that are optimized for binary size instead of runtime performance
85
+ optimize_for_size = [" core/optimize_for_size" , " alloc/optimize_for_size" ]
84
86
85
87
# Enable std_detect default features for stdarch/crates/std_detect:
86
88
# https://github.com/rust-lang/stdarch/blob/master/crates/std_detect/Cargo.toml
You can’t perform that action at this time.
0 commit comments