From c619c69bff1bf3c6103eee9fab204f028faf65a0 Mon Sep 17 00:00:00 2001 From: Karl Zylinski Date: Fri, 21 Nov 2025 21:19:58 +0100 Subject: [PATCH] Don't build log allocator file on freestanding. This makes core:log compile on freestanding again. Closes #5948 --- core/log/log_allocator.odin | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/log/log_allocator.odin b/core/log/log_allocator.odin index 3ef5b4e25..c4c54f38f 100644 --- a/core/log/log_allocator.odin +++ b/core/log/log_allocator.odin @@ -1,3 +1,5 @@ +#+build !freestanding + package log import "base:runtime"