aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/config/mh-darwin
blob: 19bf26568b5fba8d1b8e03a708ba830558b89a35 (plain)
1
2
3
4
5
6
7
# 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 += -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;`