PR target/49461
* libjava/configure.ac (SYSTEMSPEC): Pass -no_pie for darwin11.
* libjava/configure: Regenerate.
From-SVN: r175182
+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
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=
;;
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=
;;