Skip to content

Commit

Permalink
Fix alloc_jemalloc debug feature
Browse files Browse the repository at this point in the history
At least, I think that's how it should be.  'debug' is how the feature is called in Cargo.toml.
  • Loading branch information
RalfJung committed Aug 29, 2017
1 parent a12e4f8 commit 7d9e26f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liballoc_jemalloc/build.rs
Expand Up @@ -111,7 +111,7 @@ fn main() {
cmd.arg("--with-jemalloc-prefix=je_");
}

if cfg!(feature = "debug-jemalloc") {
if cfg!(feature = "debug") {
cmd.arg("--enable-debug");
}

Expand Down

0 comments on commit 7d9e26f

Please sign in to comment.