From: LIU Hao Date: Mon, 7 Aug 2023 11:07:22 +0000 (+0200) Subject: gcc: Add 'mcf' thread model support from mcfgthread X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a712247e2c3fee69e682b2bea336df1b9649e60;p=binutils-gdb.git gcc: Add 'mcf' thread model support from mcfgthread This patch adds the new thread model `mcf`, which implements mutexes and condition variables with the mcfgthread library. Source code for mcfgthread is available at . config/ * gthr.m4 (GCC_AC_THREAD_HEADER): Add new case for `mcf` thread model --- diff --git a/config/gthr.m4 b/config/gthr.m4 index 4b937306ad0..11996247f15 100644 --- a/config/gthr.m4 +++ b/config/gthr.m4 @@ -22,6 +22,7 @@ case $1 in tpf) thread_header=config/s390/gthr-tpf.h ;; vxworks) thread_header=config/gthr-vxworks.h ;; win32) thread_header=config/i386/gthr-win32.h ;; + mcf) thread_header=config/i386/gthr-mcf.h ;; esac AC_SUBST(thread_header) ])