Commit c5b7af24 by Mike Stump Committed by Mike Stump

* mh-darwin: Turn off -pie on darwin11 and later.

From-SVN: r175089
parent f3f2491c
2011-06-15 Mike Stump <mikestump@comcast.net>
* mh-darwin: Turn off -pie on darwin11 and later.
2011-04-20 Eric Botcazou <ebotcazou@adacore.com> 2011-04-20 Eric Botcazou <ebotcazou@adacore.com>
* bootstrap-lto.mk: Remove obsolete requirement. * bootstrap-lto.mk: Remove obsolete requirement.
......
# The -mdynamic-no-pic ensures that the compiler executable is built without # The -mdynamic-no-pic ensures that the compiler executable is built without
# position-independent-code -- the usual default on Darwin. This fix speeds # position-independent-code -- the usual default on Darwin. This fix speeds
# compiles by 3-5%. # compiles by 3-5%.
BOOT_CFLAGS += -mdynamic-no-pic BOOT_CFLAGS += -mdynamic-no-pic
# Ensure we don't try and use -pie, as it is incompatible with pch.
BOOT_LDFLAGS=`case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment