libc/config/mh-darwin
Jan-Benedict Glaw 9240d3c824 2013-10-16 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* ChangeLog: Sync from GCC.
	* mh-darwin: Ditto.
	* bootstrap-ubsan.mk: Ditto.
2013-10-16 20:45:20 +00:00

19 lines
772 B
Plaintext

# The -mdynamic-no-pic ensures that the compiler executable is built without
# position-independent-code -- the usual default on Darwin. This fix speeds
# compiles by 3-5%.
BOOT_CFLAGS += \
`case ${host} in i?86-*-darwin* | powerpc-*-darwin*) \
echo -mdynamic-no-pic ;; esac;`
# ld on Darwin versions >= 10.7 defaults to PIE executables. Disable this for
# gcc components, since it is incompatible with our pch implementation.
BOOT_LDFLAGS += \
`case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`
# Similarly, for cross-compilation.
STAGE1_CFLAGS += \
`case ${host} in i?86-*-darwin* | powerpc-*-darwin*)\
echo -mdynamic-no-pic ;; esac;`
STAGE1_LDFLAGS += \
`case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`