diff options
author | Carl Eugen Hoyos | 2018-07-25 20:43:02 +0200 |
---|---|---|
committer | Carl Eugen Hoyos | 2018-07-25 20:43:02 +0200 |
commit | d01d46ad860c526e2bde9bcaca28a3592787848d (patch) | |
tree | 170266eaf49766107e99ca19c7333df06a2414d0 | |
parent | 81a18f219e2ca0ec57144805dece1b72b73c692d (diff) |
configure: Force pie for Android.
Position-independent executables are required since Lollipop.
Reported-by: Mohammed Bey Ahmed Khernache
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5049,6 +5049,8 @@ case $target_os in android) disable symver enable section_data_rel_ro + add_cflags -fPIE + add_ldexeflags -fPIE -pie SLIB_INSTALL_NAME='$(SLIBNAME)' SLIB_INSTALL_LINKS= SHFLAGS='-shared -Wl,-soname,$(SLIBNAME)' |