Skip to content

Commit 207de01

Browse files
committed
libary: Forward compiler-builtins "asm" and "mangled-names" feature
Now users will be able to do: ``` cargo build -Zbuild-std=core -Zbuild-std-features=compiler-builtins-asm ``` and correctly get the assembly implemenations for `memcpy` and friends.
1 parent 6de5125 commit 207de01

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

library/test/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ default = ["std_detect_file_io", "std_detect_dlsym_getauxval", "panic-unwind"]
2626
backtrace = ["std/backtrace"]
2727
compiler-builtins-c = ["std/compiler-builtins-c"]
2828
compiler-builtins-mem = ["std/compiler-builtins-mem"]
29+
compiler-builtins-asm = ["std/compiler-builtins-asm"]
30+
compiler-builtins-mangled-names = ["std/compiler-builtins-mangled-names"]
2931
llvm-libunwind = ["std/llvm-libunwind"]
3032
system-llvm-libunwind = ["std/system-llvm-libunwind"]
3133
panic-unwind = ["std/panic_unwind"]

0 commit comments

Comments
 (0)