https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80881
--- Comment #97 from LIU Hao <lh_mouse at 126 dot com> --- (In reply to Julian Waters from comment #96) > Created attachment 60287 [details] > Latest TLS > > Changed to hard error on broken @secrel32 support. Do help me check if the > configure patch is ok. If it is, it's probably finally ready for integration In the configure check there is `grep '.reloc'`, where the dot character matches everything, which is probably not desired. It should be `grep '\.reloc\>'`. The idea about that check looks correct.