add configure check for gnu linker hash style setting
authorRich Felker <dalias@aerifal.cx>
Thu, 7 Jun 2012 00:45:52 +0000 (20:45 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 7 Jun 2012 00:45:52 +0000 (20:45 -0400)
commit08f70a30c00c587856a95d5951fb486269e4f651
tree65ea4de54f8f71af8d181ed13664cb00a124dcc3
parent6e0ad2277ae28ba55c4c73bbfd0898d90ececd33
add configure check for gnu linker hash style setting

some broken distro-provided toolchains have modified gcc to produce
only "gnu hash" dynamic hash table by default. as this is unsupported
by musl, that results in a non-working libc.so. we detect and switch
this on in configure rather than hard-coding it in the Makefile
because it's not supported by old binutils versions, but that might
not even be relevant since old binutils versions already fail from
-Bsymbolic-functions being missing. at some point I may review whether
this should just go in the Makefile...
configure