From 102c5b418a18ea76e8b81d1b14a4836963674298 Mon Sep 17 00:00:00 2001 From: Kyler Date: Sun, 7 Dec 2025 23:18:11 -0700 Subject: [PATCH] Fixed normal builds --- SLS_C/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SLS_C/build.py b/SLS_C/build.py index 24d8c67..a111233 100644 --- a/SLS_C/build.py +++ b/SLS_C/build.py @@ -400,7 +400,7 @@ def build_macos(): # --------------------------------------------------------------------- def build_main(): sources = list(SRC_DIR.glob("*.c")) - objects = [compile_source(s, is_test=False) for s in sources] + objects = [compile_source(s, is_test=False) for s in sources if s.name != 'pico_main.c'] link_executable(objects, TARGET)