We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d9e26f commit 16fc74cCopy full SHA for 16fc74c
src/liballoc_jemalloc/build.rs
@@ -111,9 +111,11 @@ fn main() {
111
cmd.arg("--with-jemalloc-prefix=je_");
112
}
113
114
- if cfg!(feature = "debug") {
115
- cmd.arg("--enable-debug");
116
- }
+ // FIXME: building with jemalloc assertions is currently broken.
+ // See <https://github.com/rust-lang/rust/issues/44152>.
+ //if cfg!(feature = "debug") {
117
+ // cmd.arg("--enable-debug");
118
+ //}
119
120
cmd.arg(format!("--host={}", build_helper::gnu_target(&target)));
121
cmd.arg(format!("--build={}", build_helper::gnu_target(&host)));
0 commit comments