From 68314b8f7ec7dbdfa2c63c1edcf2cd12dca28293 Mon Sep 17 00:00:00 2001 From: Matt Knight Date: Wed, 24 Aug 2022 23:17:08 -0700 Subject: [PATCH] use stage1 until stage3 is ready (#75) --- src/main.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.zig b/src/main.zig index cd26858..1e8d285 100644 --- a/src/main.zig +++ b/src/main.zig @@ -141,6 +141,8 @@ pub fn addEmbeddedExecutable( .app_packages = std.ArrayList(Pkg).init(builder.allocator), }; + exe.inner.use_stage1 = true; + // might not be true for all machines (Pi Pico), but // for the HAL it's true (it doesn't know the concept of threading) exe.inner.single_threaded = true;