diff options
author | Jack Howarth <howarth@bromo.med.uc.edu> | 2011-06-18 15:06:26 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2011-06-18 15:06:26 +0000 |
commit | ffe5104599c7a16adff14cf4c8f7238cd1799da0 (patch) | |
tree | 498a178bbecf1859133d3d2826807de9b1a24852 | |
parent | 0c5872608851080c66fd5b9a0b6d940148c6902d (diff) | |
download | gcc-ffe5104599c7a16adff14cf4c8f7238cd1799da0.zip gcc-ffe5104599c7a16adff14cf4c8f7238cd1799da0.tar.gz gcc-ffe5104599c7a16adff14cf4c8f7238cd1799da0.tar.bz2 |
re PR target/49461 (boehm-gc and gcj incompatible with pie)
PR target/49461
* libjava/configure.ac (SYSTEMSPEC): Pass -no_pie for darwin11.
* libjava/configure: Regenerate.
From-SVN: r175182
-rw-r--r-- | libjava/ChangeLog | 6 | ||||
-rwxr-xr-x | libjava/configure | 7 | ||||
-rw-r--r-- | libjava/configure.ac | 7 |
3 files changed, 18 insertions, 2 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index b253d02..c800bf3 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2011-06-17 Jack Howarth <howarth@bromo.med.uc.edu> + + PR target/49461 + * libjava/configure.ac (SYSTEMSPEC): Pass -no_pie for darwin11. + * libjava/configure: Regenerate. + 2011-06-17 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> PR libgcj/49315 diff --git a/libjava/configure b/libjava/configure index 01e5bf0..4c3ab55 100755 --- a/libjava/configure +++ b/libjava/configure @@ -19788,9 +19788,14 @@ case "${host}" in SYSTEMSPEC="-lunicows $SYSTEMSPEC" fi ;; - *-*-darwin[912]*) + *-*-darwin9*) 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= ;; diff --git a/libjava/configure.ac b/libjava/configure.ac index 0e127fc..5f673ea 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -898,9 +898,14 @@ case "${host}" in SYSTEMSPEC="-lunicows $SYSTEMSPEC" fi ;; - *-*-darwin[[912]]*) + *-*-darwin9*) 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= ;; |