aboutsummaryrefslogtreecommitdiffstats
path: root/build.zig
blob: 00d19c48e83f9b609d28ff4fd0d8ef359b1ed88c (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 exe = b.addExecutable(.{
        .name = "stm32",
        .root_source_file = b.path("src/main.zig"),
        .target = target,
        //.optimize = .Debug,
        .optimize = .ReleaseSafe,
        .linkage = .static,
    });

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

    b.installArtifact(exe);
}