diff options
author | Patrick Marlier <patrick.marlier@gmail.com> | 2012-02-24 15:21:12 +0000 |
---|---|---|
committer | Patrick Marlier <pmarlier@gcc.gnu.org> | 2012-02-24 15:21:12 +0000 |
commit | e00db5114228d50fece5c764a1f077e065cf8605 (patch) | |
tree | 5fa07983ce5f834e7151dcc8faecefda82f3881c /libjava/configure | |
parent | b9af73fca3e2e71b67880731f9be888e0445e9de (diff) | |
download | gcc-e00db5114228d50fece5c764a1f077e065cf8605.zip gcc-e00db5114228d50fece5c764a1f077e065cf8605.tar.gz gcc-e00db5114228d50fece5c764a1f077e065cf8605.tar.bz2 |
re PR boehm-gc/52179 (boehm-gc incompatible with aslr on darwin11)
2012-02-23 Patrick Marlier <patrick.marlier@gmail.com>
Jack Howarth <howarth@bromo.med.uc.edu>
boehm-gc/
PR boehm-gc/52179
* include/gc_config.h.in: Undefine HAVE_PTHREAD_GET_STACKADDR_NP.
* include/private/gcconfig.h (DARWIN): Define STACKBOTTOM with
pthread_get_stackaddr_np when available.
* configure.ac (THREADS): Check availability of pthread_get_stackaddr_np.
* configure: Regenerate.
libjava/
PR target/49461
* configure.ac (SYSTEMSPEC): No longer pass -no_pie for darwin11.
* configure: Regenerate.
Co-Authored-By: Jack Howarth <howarth@bromo.med.uc.edu>
From-SVN: r184555
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libjava/configure b/libjava/configure index b8f23d3..8ea1aec 100755 --- a/libjava/configure +++ b/libjava/configure @@ -19788,14 +19788,9 @@ case "${host}" in SYSTEMSPEC="-lunicows $SYSTEMSPEC" fi ;; - *-*-darwin9*) + *-*-darwin[912]*) SYSTEMSPEC="%{!Zdynamiclib:%{!Zbundle:-allow_stack_execute}}" ;; - *-*-darwin[12]*) - # Something is incompatible with pie, would be nice to fix it and - # remove -no_pie. PR49461 - SYSTEMSPEC="-no_pie %{!Zdynamiclib:%{!Zbundle:-allow_stack_execute}}" - ;; *) SYSTEMSPEC= ;; |