We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2b093 commit 9f36ec0Copy full SHA for 9f36ec0
src/librustc_back/target/arm_linux_androideabi.rs
@@ -13,8 +13,6 @@ use target::Target;
13
pub fn target() -> Target {
14
let mut base = super::android_base::opts();
15
base.features = "+v7".to_string();
16
- // FIXME #17437 (and #17448): Android doesn't support position dependent executables anymore.
17
- base.position_independent_executables = false;
18
19
Target {
20
data_layout: "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-\
src/test/run-pass/backtrace.rs
@@ -10,6 +10,7 @@
10
11
// no-pretty-expanded FIXME #15189
12
// ignore-windows FIXME #13259
+// ignore-android FIXME #17520
use std::env;
use std::process::{Command, Stdio};
0 commit comments