Skip to content

Commit c137164

Browse files
committed
Use PIE on Android
This is OK to do given: - PIE is supported on Android starting with API 16. - The bots are running API 18. - API < 16 now has a 12.5% market share[0] as of 2015-04-29. Closes #17437. [0] https://developer.android.com/about/dashboards/index.html
1 parent 7e2b093 commit c137164

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/librustc_back/target/arm_linux_androideabi.rs

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ use target::Target;
1313
pub fn target() -> Target {
1414
let mut base = super::android_base::opts();
1515
base.features = "+v7".to_string();
16-
// FIXME #17437 (and #17448): Android doesn't support position dependent executables anymore.
17-
base.position_independent_executables = false;
1816

1917
Target {
2018
data_layout: "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-\

0 commit comments

Comments
 (0)