Skip to content

Commit

Permalink
Rollup merge of rust-lang#23255 - dhuseby:master, r=alexcrichton
Browse files Browse the repository at this point in the history
 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.
  • Loading branch information
Manishearth committed Mar 12, 2015
2 parents 7a9ef60 + 33751ff commit e4010d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -760,8 +760,9 @@ fi
# Force bitrig to build with clang; gcc doesn't like us there
if [ $CFG_OSTYPE = unknown-bitrig ]
then
step_msg "on Bitrig, forcing use of clang"
step_msg "on Bitrig, forcing use of clang, disabling jemalloc"
CFG_ENABLE_CLANG=1
CFG_ENABLE_JEMALLOC=0
fi

if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
Expand Down
1 change: 1 addition & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
S 2015-03-07 270a677
bitrig-x86_64 4b2f11a96b1b5b3782d74bda707aca33bc179880
freebsd-x86_64 3c147d8e4cfdcb02c2569f5aca689a1d8920d17b
linux-i386 50a47ef247610fb089d2c4f24e4b641eb0ba4afb
linux-x86_64 ccb20709b3c984f960ddde996451be8ce2268d7c
Expand Down

0 comments on commit e4010d1

Please sign in to comment.