diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-05-26 21:23:03 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2005-05-26 21:23:03 +0000 |
commit | 5c48e4b530c96dff7b8293ffaa636332298169f5 (patch) | |
tree | 236b09c4a3d7b1ccc4fb4bb7b8461324c8e4cd66 /extra | |
parent | 8cc46759b24d20030ae73c16304a35758c7c328c (diff) |
Add PIE support to ARM. From Peter Mazinger
Diffstat (limited to 'extra')
-rw-r--r-- | extra/Configs/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 66c90365f..738ab9408 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -1110,12 +1110,12 @@ config UCLIBC_BUILD_PIE bool "Build utilities as ET_DYN/PIE executables" depends on UCLIBC_SECURITY depends on HAVE_SHARED - depends on TARGET_i386 || TARGET_powerpc || TARGET_mips || TARGET_frv + depends on TARGET_arm || TARGET_frv || TARGET_i386 || TARGET_mips || TARGET_powerpc select FORCE_SHAREABLE_TEXT_SEGMENTS if BUILD_UCLIBC_LDSO default y help If you answer Y here, ldd and iconv are built as ET_DYN/PIE executables. - It requires gcc-3.4 and binutils-2.15 or later. + It requires gcc-3.4 and binutils-2.15 (for arm 2.16) or later. More about ET_DYN/PIE binaries on <http://pax.grsecurity.net/> . WARNING: This option also enables FORCE_SHAREABLE_TEXT_SEGMENTS, so all libraries have to be built with -fPIC or -fpic, and all assembler |