]> git.lizzy.rs Git - rust.git/commitdiff
give up on trying to fix the assertion failure
authorRalf Jung <post@ralfj.de>
Tue, 29 Aug 2017 14:09:38 +0000 (16:09 +0200)
committerRalf Jung <post@ralfj.de>
Tue, 29 Aug 2017 14:10:13 +0000 (16:10 +0200)
src/liballoc_jemalloc/build.rs

index 2a8af60be007bc985034be321a3d2291a92eee01..c9bea2ecf5e9fcd1f2ba498e03709fd2b8f34b61 100644 (file)
@@ -111,9 +111,11 @@ fn main() {
         cmd.arg("--with-jemalloc-prefix=je_");
     }
 
-    if cfg!(feature = "debug") {
-        cmd.arg("--enable-debug");
-    }
+    // FIXME: building with jemalloc assertions is currently broken.
+    // See <https://github.com/rust-lang/rust/issues/44152>.
+    //if cfg!(feature = "debug") {
+    //    cmd.arg("--enable-debug");
+    //}
 
     cmd.arg(format!("--host={}", build_helper::gnu_target(&target)));
     cmd.arg(format!("--build={}", build_helper::gnu_target(&host)));