Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Fix building of minimal #24

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ pub const chips = @import("src/chips.zig");
pub fn build(b: *std.build.Builder) void {
const optimize = b.standardOptimizeOption(.{});
inline for (@typeInfo(boards).Struct.decls) |decl| {
if (!decl.is_pub)
continue;

const exe = microzig.addEmbeddedExecutable(b, .{
.name = @field(boards, decl.name).name ++ ".minimal",
.source_file = .{
Expand All @@ -22,9 +19,6 @@ pub fn build(b: *std.build.Builder) void {
}

inline for (@typeInfo(chips).Struct.decls) |decl| {
if (!decl.is_pub)
continue;

const exe = microzig.addEmbeddedExecutable(b, .{
.name = @field(chips, decl.name).name ++ ".minimal",
.source_file = .{
Expand Down