Skip to content

Commit 149242e

Browse files
committed
Bootstrap: append libjemalloc_pic.a
Fix #35349
1 parent b37edea commit 149242e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ impl Config {
516516
"CFG_JEMALLOC_ROOT" if value.len() > 0 => {
517517
let target = self.target_config.entry(self.build.clone())
518518
.or_insert(Target::default());
519-
target.jemalloc = Some(parse_configure_path(value));
519+
target.jemalloc = Some(parse_configure_path(value).join("libjemalloc_pic.a"));
520520
}
521521
"CFG_ARM_LINUX_ANDROIDEABI_NDK" if value.len() > 0 => {
522522
let target = "arm-linux-androideabi".to_string();

0 commit comments

Comments
 (0)