mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
jemalloc: Fix jemalloc prefix for applications which expect ^malloc
This commit is contained in:
parent
7c149b86c3
commit
5856e44258
@ -138,6 +138,10 @@ stdenv.mkDerivation {
|
||||
sed -i configure \
|
||||
-e '/probe_need CFG_CURLORWGET/d'
|
||||
|
||||
# Fix the use of jemalloc prefixes which our jemalloc doesn't have
|
||||
[ -f src/liballoc_jemalloc/lib.rs ] && sed -i 's,je_,,g' src/liballoc_jemalloc/lib.rs
|
||||
[ -f src/liballoc/heap.rs ] && sed -i 's,je_,,g' src/liballoc/heap.rs # Remove for 1.4.0+
|
||||
|
||||
# Useful debugging parameter
|
||||
#export VERBOSE=1
|
||||
'';
|
||||
|
@ -8,11 +8,6 @@ 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";
|
||||
|
Loading…
Reference in New Issue
Block a user