mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Stack protector enabling for Android targets.
* configure.ac: Stack protector enabling for Android targets. * configure: Regenerate. From-SVN: r187586
This commit is contained in:
parent
a224c14871
commit
40295cc722
|
@ -1,3 +1,8 @@
|
||||||
|
2012-05-16 Igor Zamyatin <igor.zamyatin@intel.com>
|
||||||
|
|
||||||
|
* configure.ac: Stack protector enabling for Android targets.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2012-05-16 Richard Sandiford <r.sandiford@uk.ibm.com>
|
2012-05-16 Richard Sandiford <r.sandiford@uk.ibm.com>
|
||||||
|
|
||||||
* ira.c (pseudo_move_insn): Delete.
|
* ira.c (pseudo_move_insn): Delete.
|
||||||
|
|
|
@ -26657,6 +26657,11 @@ else
|
||||||
$target_header_dir/bits/uClibc_config.h > /dev/null; then
|
$target_header_dir/bits/uClibc_config.h > /dev/null; then
|
||||||
gcc_cv_libc_provides_ssp=yes
|
gcc_cv_libc_provides_ssp=yes
|
||||||
fi
|
fi
|
||||||
|
# all versions of Bionic support stack protector
|
||||||
|
elif test -f $target_header_dir/sys/cdefs.h \
|
||||||
|
&& $EGREP '^[ ]*#[ ]*define[ ]+__BIONIC__[ ]+1' \
|
||||||
|
$target_header_dir/sys/cdefs.h > /dev/null; then
|
||||||
|
gcc_cv_libc_provides_ssp=yes
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*-*-gnu*)
|
*-*-gnu*)
|
||||||
|
|
|
@ -4566,6 +4566,11 @@ AC_CACHE_CHECK(__stack_chk_fail in target C library,
|
||||||
$target_header_dir/bits/uClibc_config.h > /dev/null; then
|
$target_header_dir/bits/uClibc_config.h > /dev/null; then
|
||||||
gcc_cv_libc_provides_ssp=yes
|
gcc_cv_libc_provides_ssp=yes
|
||||||
fi
|
fi
|
||||||
|
# all versions of Bionic support stack protector
|
||||||
|
elif test -f $target_header_dir/sys/cdefs.h \
|
||||||
|
&& $EGREP '^[ ]*#[ ]*define[ ]+__BIONIC__[ ]+1' \
|
||||||
|
$target_header_dir/sys/cdefs.h > /dev/null; then
|
||||||
|
gcc_cv_libc_provides_ssp=yes
|
||||||
fi]
|
fi]
|
||||||
;;
|
;;
|
||||||
*-*-gnu*)
|
*-*-gnu*)
|
||||||
|
|
Loading…
Reference in New Issue