aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/jemalloc
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-22 21:18:07 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-23 12:30:00 -0700
commitde2906e6706c6c342f016906865026cb443d96a1 (patch)
tree83a44ac19814f1f5e3c3710fb6770b3b8f4f6673 /pkgs/development/libraries/jemalloc
parentabb4088c6cefebe9ee804674a543032457184b15 (diff)
rustc: Update both versions of the compiler
rustc: 1.2.0 -> 1.3.0 rustcMaster: 2015-09-05 -> 2015-09-21 This also removes the llvm bundling which reduced immediate the closure size by ~50MB. It also tries to reduce some of the superfluous dependencies to help reduce the number of potential rebuilds (namely removing git).
Diffstat (limited to 'pkgs/development/libraries/jemalloc')
-rw-r--r--pkgs/development/libraries/jemalloc/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix
index d40cdf75ad17..e02725299073 100644
--- a/pkgs/development/libraries/jemalloc/default.nix
+++ b/pkgs/development/libraries/jemalloc/default.nix
@@ -8,6 +8,11 @@ stdenv.mkDerivation rec {
sha256 = "1wiydkp8a4adwsgfsd688hpv2z7hjv5manhckchk96v6qdsbqk91";
};
+ # Rust refers to jemalloc functions directly so make sure the prefix matchs.
+ configureFlags = [
+ "--with-jemalloc-prefix=je_"
+ ];
+
meta = with stdenv.lib; {
homepage = http://www.canonware.com/jemalloc/index.html;
description = "a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support";