The 'proper' solution would be for the compiler to come with a tls enabled libpthread (maybe report a bug) - the 'improper' is to make the ld-linux loader skip trying the tls glibc libraries. Either by turning of tls (LD_PRELOAD_ASSUME=2.4.1) or by preloading the correct non-tls libraries (something like LD_PRELOAD=/lib64/librt.so.1 ...) possibly having to list more then just one library (separated by colons or semicolons in double quotes)
Come to think of it, the ld-linux loader should probably if loading fails retry loading/resolving symbols from the beginning with tls disabled...
Cheers, MaZe.