From 219b0fe5352af2b9265b0389965aa411ad9af4b5 Mon Sep 17 00:00:00 2001 From: Harold Brenes Date: Sun, 13 Jul 2025 15:45:21 -0400 Subject: Replace system:System.framework imports with system:System This makes the linker work for both macOS and iOS targets --- core/sys/kqueue/kqueue.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/sys/kqueue') diff --git a/core/sys/kqueue/kqueue.odin b/core/sys/kqueue/kqueue.odin index 56be1cf7a..25ee9bdce 100644 --- a/core/sys/kqueue/kqueue.odin +++ b/core/sys/kqueue/kqueue.odin @@ -2,7 +2,7 @@ package kqueue when ODIN_OS == .Darwin { - foreign import lib "system:System.framework" + foreign import lib "system:System" } else { foreign import lib "system:c" } -- cgit v1.2.3