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