We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 244bb14 commit 70dedbbCopy full SHA for 70dedbb
src/librustc_back/target/arm_linux_androideabi.rs
@@ -16,6 +16,8 @@ pub fn target() -> Target {
16
// Many of the symbols defined in compiler-rt are also defined in libgcc. Android
17
// linker doesn't like that by default.
18
base.pre_link_args.push("-Wl,--allow-multiple-definition".to_string());
19
+ // FIXME #17437 (and #17448): Android doesn't support position dependant executables anymore.
20
+ base.position_independant_executables = false;
21
22
Target {
23
data_layout: "e-p:32:32:32\
0 commit comments