aboutsummaryrefslogtreecommitdiffstats
path: root/build.zig
blob: 1d53b0904393c649899bb73d47366dcad9589680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const std = @import("std");

pub fn build(b: *std.Build) void {
    const target = b.resolveTargetQuery(.{
        .cpu_arch = .thumb,
        .cpu_model = .{ .explicit = &std.Target.arm.cpu.cortex_m4 },
        .os_tag = .freestanding,
        .abi = .none
    });
    const optimize = .Debug; // .ReleaseSmall

    const exe = b.addExecutable(.{
        .name = "stm32",
        .root_source_file = b.path("src/main.zig"),
        .target = target,
        .optimize = optimize,
        .linkage = .static,
    });

    exe.addAssemblyFile(b.path("src/bootstrap.s"));
    exe.setLinkerScriptPath(b.path("link.ld"));

    b.installArtifact(exe);
}