The branch stable/13 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=49fe71bb1e8f3e916fe856da80486461e3e2c29d
commit 49fe71bb1e8f3e916fe856da80486461e3e2c29d Author: John Baldwin <[email protected]> AuthorDate: 2021-02-18 00:34:23 +0000 Commit: Konstantin Belousov <[email protected]> CommitDate: 2021-03-02 00:49:42 +0000 mips: Don't set __NO_TLS to disable some uses of TLS. (cherry picked from commit 24fd63e0970f91189dd2acde987bd2e4c8c04a50) --- sys/sys/cdefs.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 4de1ef011756..1e670fd87d6f 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -768,8 +768,7 @@ #endif #endif /* __STDC_WANT_LIB_EXT1__ */ -#if defined(__mips) || \ - (defined(__powerpc64__) && (!defined(_CALL_ELF) || _CALL_ELF == 1)) +#if defined(__powerpc64__) && (!defined(_CALL_ELF) || _CALL_ELF == 1) #define __NO_TLS 1 #endif _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
