From 1dd9b8560d0c3aee5de16fb6190c968f32063747 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Mon, 14 Oct 2024 16:11:25 +0200 Subject: [PATCH] build mutex allocator code on freestanding wasm --- core/mem/mutex_allocator.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mem/mutex_allocator.odin b/core/mem/mutex_allocator.odin index b8062bca1..7361016c3 100644 --- a/core/mem/mutex_allocator.odin +++ b/core/mem/mutex_allocator.odin @@ -1,4 +1,4 @@ -#+build !freestanding +#+build !freestanding, wasm32, wasm64p32 package mem import "core:sync"