You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to build lc3-codec crate example sns_decode, for a custom target of riscv32, using cargo build -Zbuild-std=core and added compiler_builtins as dependency in the Cargo.toml
I get the error
@tgross35 Any hint on this? it is similar to the issue #334
Thanks!
The text was updated successfully, but these errors were encountered:
If I remove the explicit dependency from Cargo.toml and use -Zbuild-std=core,compiler_builtins then i get again rust-lld: error: undefined symbol: memcmp.
Try also passing -Zbuild-std-features=compiler-builtins-mem to cargo. Or alternatively you can add -none to your target name to make compiler-builtins assume that your target is missing libc and automatically enable the mem feature.
Hi
I'm trying to build lc3-codec crate example sns_decode, for a custom target of riscv32, using cargo build -Zbuild-std=core and added compiler_builtins as dependency in the Cargo.toml
I get the error
@tgross35 Any hint on this? it is similar to the issue #334
Thanks!
The text was updated successfully, but these errors were encountered: