Skip to content

Commit e4010d1

Browse files
committed
Rollup merge of rust-lang#23255 - dhuseby:master, r=alexcrichton
it turns out that jemalloc doesn't behave well on bitrig. with jemalloc enabled i get some kernel errors related to sbrk failures. with jemalloc disabled, the errors go away. i am investigating, but in the mean time, we should just disable jemalloc by default on bitrig.
2 parents 7a9ef60 + 33751ff commit e4010d1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

configure

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,8 +760,9 @@ fi
760760
# Force bitrig to build with clang; gcc doesn't like us there
761761
if [ $CFG_OSTYPE = unknown-bitrig ]
762762
then
763-
step_msg "on Bitrig, forcing use of clang"
763+
step_msg "on Bitrig, forcing use of clang, disabling jemalloc"
764764
CFG_ENABLE_CLANG=1
765+
CFG_ENABLE_JEMALLOC=0
765766
fi
766767

767768
if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]

src/snapshots.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
S 2015-03-07 270a677
2+
bitrig-x86_64 4b2f11a96b1b5b3782d74bda707aca33bc179880
23
freebsd-x86_64 3c147d8e4cfdcb02c2569f5aca689a1d8920d17b
34
linux-i386 50a47ef247610fb089d2c4f24e4b641eb0ba4afb
45
linux-x86_64 ccb20709b3c984f960ddde996451be8ce2268d7c

0 commit comments

Comments
 (0)