Skip to content

Commit 7d9e26f

Browse files
committed
Fix alloc_jemalloc debug feature
At least, I think that's how it should be. 'debug' is how the feature is called in Cargo.toml.
1 parent a12e4f8 commit 7d9e26f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc_jemalloc/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ fn main() {
111111
cmd.arg("--with-jemalloc-prefix=je_");
112112
}
113113

114-
if cfg!(feature = "debug-jemalloc") {
114+
if cfg!(feature = "debug") {
115115
cmd.arg("--enable-debug");
116116
}
117117

0 commit comments

Comments
 (0)