We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb0849 commit ec9502dCopy full SHA for ec9502d
src/bootstrap/src/lib.rs
@@ -635,11 +635,12 @@ impl Build {
635
if self.config.backtrace {
636
features.insert("backtrace");
637
}
638
+
639
if self.config.profiler_enabled(target) {
640
features.insert("profiler");
641
- // Generate memcpy, etc. FIXME: Remove this once compiler-builtins
642
- // automatically detects this target.
643
+ // If zkvm target, generate memcpy, etc.
644
if target.contains("zkvm") {
645
features.insert("compiler-builtins-mem");
646
0 commit comments