diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-19 10:22:19 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-05-19 10:22:19 -0300 |
commit | f294306ba1385b096f4e4cac9146a989f1e6d1c0 (patch) | |
tree | 04972266ccd8644312393beddfbaeac9611cd81f /configure | |
parent | 1805bf753f6fec9ccaeb305b748cfb9a26041d1c (diff) | |
download | glibc-f294306ba1385b096f4e4cac9146a989f1e6d1c0.tar.gz glibc-f294306ba1385b096f4e4cac9146a989f1e6d1c0.tar.xz glibc-f294306ba1385b096f4e4cac9146a989f1e6d1c0.zip |
Remove --enable-stackguard-randomization (BZ #27872)
Last ENABLE_STACKGUARD_RANDOMIZE usage was removed by 4a103975c4.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/configure b/configure index 4cc462613c..5dde2ba355 100755 --- a/configure +++ b/configure @@ -770,7 +770,6 @@ enable_profile enable_static_pie enable_timezone_tools enable_hardcoded_path_in_tests -enable_stackguard_randomization enable_hidden_plt enable_bind_now enable_stack_protector @@ -1430,9 +1429,6 @@ Optional Features: --enable-hardcoded-path-in-tests hardcode newly built glibc path in tests [default=no] - --enable-stackguard-randomization - initialize __stack_chk_guard canary with a random - number at program start --disable-hidden-plt do not hide internal function calls to avoid PLT --enable-bind-now disable lazy relocations in DSOs --enable-stack-protector=[yes|no|all|strong] @@ -3397,18 +3393,6 @@ fi -# Check whether --enable-stackguard-randomization was given. -if test "${enable_stackguard_randomization+set}" = set; then : - enableval=$enable_stackguard_randomization; enable_stackguard_randomize=$enableval -else - enable_stackguard_randomize=no -fi - -if test "$enable_stackguard_randomize" = yes; then - $as_echo "#define ENABLE_STACKGUARD_RANDOMIZE 1" >>confdefs.h - -fi - # Check whether --enable-hidden-plt was given. if test "${enable_hidden_plt+set}" = set; then : enableval=$enable_hidden_plt; hidden=$enableval |