Skip to content

Commit

Permalink
Auto merge of #30662 - simartin:issue_30592, r=alexcrichton
Browse files Browse the repository at this point in the history
Fixes #30592, a fallout of cd1848a
  • Loading branch information
bors committed Jan 14, 2016
2 parents 9f6917d + c5da160 commit e1f550e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/liballoc/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,15 @@

#![feature(needs_allocator)]

// Issue# 30592: Systematically use alloc_system during stage0 since jemalloc
// might be unavailable or disabled
#![cfg_attr(stage0, feature(alloc_system))]

#![cfg_attr(test, feature(test, rustc_private, box_heap))]

#[cfg(stage0)]
extern crate alloc_system;

// Allow testing this library

#[cfg(test)]
Expand Down

0 comments on commit e1f550e

Please sign in to comment.