The branch releng/13.0 has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=229f1e4b14246cf950ed0536f15fd2b1d563fbf7
commit 229f1e4b14246cf950ed0536f15fd2b1d563fbf7 Author: John Baldwin <j...@freebsd.org> AuthorDate: 2021-02-18 00:33:09 +0000 Commit: Konstantin Belousov <k...@freebsd.org> CommitDate: 2021-03-02 15:18:56 +0000 riscv: Don't set __NO_TLS to disable some uses of TLS. Approved by: re (gjb) (cherry picked from commit dd176fd7e7b5aad231cd6ebf49fd14ae7394dfee) --- sys/sys/cdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/cdefs.h b/sys/sys/cdefs.h index 75bedd4b8128..4de1ef011756 100644 --- a/sys/sys/cdefs.h +++ b/sys/sys/cdefs.h @@ -768,7 +768,7 @@ #endif #endif /* __STDC_WANT_LIB_EXT1__ */ -#if defined(__mips) || defined(__riscv) || \ +#if defined(__mips) || \ (defined(__powerpc64__) && (!defined(_CALL_ELF) || _CALL_ELF == 1)) #define __NO_TLS 1 #endif _______________________________________________ dev-commits-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"