diff options
author | Ayke van Laethem <[email protected]> | 2024-11-07 14:38:31 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-11-20 18:50:34 +0100 |
commit | dd1ebbd31bd23474148686bd1d7a7298fe85038d (patch) | |
tree | fde74a680d8a6290291164d7fde201d459602d57 /GNUmakefile | |
parent | 95671469c75cb56e7bdee9a061bc20114b4c2dc0 (diff) | |
download | tinygo-dd1ebbd31bd23474148686bd1d7a7298fe85038d.tar.gz tinygo-dd1ebbd31bd23474148686bd1d7a7298fe85038d.zip |
runtime: implement race-free signals using futexes
This requires an API introduced in MacOS 11. I think that's fine, since
the version before that (MacOS 10.15) is EOL since 2022. Though if
needed, we could certainly work around it by using an older and slightly
less nice API.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 2bf023c62..5f82599e7 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -935,6 +935,7 @@ endif @cp -rp lib/musl/src/malloc build/release/tinygo/lib/musl/src @cp -rp lib/musl/src/mman build/release/tinygo/lib/musl/src @cp -rp lib/musl/src/math build/release/tinygo/lib/musl/src + @cp -rp lib/musl/src/misc build/release/tinygo/lib/musl/src @cp -rp lib/musl/src/multibyte build/release/tinygo/lib/musl/src @cp -rp lib/musl/src/signal build/release/tinygo/lib/musl/src @cp -rp lib/musl/src/stdio build/release/tinygo/lib/musl/src |