2004-09-01 05:34:59 +02:00
|
|
|
# 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%.
|
2008-02-20 16:31:19 +01:00
|
|
|
BOOT_CFLAGS += -mdynamic-no-pic
|
2011-06-16 03:31:38 +02:00
|
|
|
|
|
|
|
# Ensure we don't try and use -pie, as it is incompatible with pch.
|
2011-06-16 21:22:01 +02:00
|
|
|
BOOT_LDFLAGS += `case ${host} in *-*-darwin[1][1-9]*) echo -Wl,-no_pie ;; esac;`
|