shithub: moonfish

Download patch

ref: f98c51945d011a94e266d7f5146e18061e0680da
parent: 0313b08e2aea153e086c83a2ef96cef18fc1cb0f
author: zamfofex <zamfofex@twdb.moe>
date: Sun Dec 24 08:39:11 EST 2023

add note about C11 threads support

--- a/README.md
+++ b/README.md
@@ -56,6 +56,8 @@
 
 Conversely, you may also invoke your compiler by hand. (Feel free to replace `cc` with your compiler of choice.)
 
+Note: If your C implementation doesn’t support pthreads, but supports C11 threads, you can pass in `-Dmoonfish_c11_threads`.
+
 ~~~
 cc -ansi -O3 -pthread -D_POSIX_C_SOURCE=199309L -o moonfish chess.c search.c main.c
 ~~~
--