Skip to content

Commit

Permalink
Auto merge of #39392 - ishitatsuyuki:master, r=alexcrichton
Browse files Browse the repository at this point in the history
Bootstrap: append libjemalloc_pic.a

Fix #35349
  • Loading branch information
bors committed Jan 30, 2017
2 parents d01e22e + 149242e commit 4ef2c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ impl Config {
"CFG_JEMALLOC_ROOT" if value.len() > 0 => {
let target = self.target_config.entry(self.build.clone())
.or_insert(Target::default());
target.jemalloc = Some(parse_configure_path(value));
target.jemalloc = Some(parse_configure_path(value).join("libjemalloc_pic.a"));
}
"CFG_ARM_LINUX_ANDROIDEABI_NDK" if value.len() > 0 => {
let target = "arm-linux-androideabi".to_string();
Expand Down

0 comments on commit 4ef2c3e

Please sign in to comment.