diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-12-22 18:58:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-12-22 18:58:12 +0000 |
commit | 5941632e79effa6654512aa391a6d569cde68b94 (patch) | |
tree | 791f10bb689006199d5fb4bf1780d3afc26a8cf5 /extra/Configs/Config.in | |
parent | 4a56d69f1e77a362a51255c125d471fb468f9517 (diff) |
Patch from Peter S. Mazinger to simplify PIE handling
Diffstat (limited to 'extra/Configs/Config.in')
-rw-r--r-- | extra/Configs/Config.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index c65a767e7..65f9b32d3 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -206,16 +206,14 @@ config FORCE_SHAREABLE_TEXT_SEGMENTS coded shared libraries. config UCLIBC_PIE_SUPPORT - bool "Support ET_DYN in shared library loader" + bool "Build utilities as ET_DYN/PIE executables" depends on HAVE_SHARED - depends on TARGET_i386 || TARGET_powerpc + depends on TARGET_i386 || TARGET_powerpc || TARGET_frv select FORCE_SHAREABLE_TEXT_SEGMENTS if BUILD_UCLIBC_LDSO default n help - If you answer Y here, Scrt1.o will be built to allow the creation of - ET_DYN/PIE executables. - It requires binutils-2.14.90.0.6 or later and the usage of the - -pie option. + If you answer Y here, ldd and iconv are built as ET_DYN/PIE executables. + This requires gcc-3.4 and binutils-2.15 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 |