mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
31 lines
913 B
Zig
31 lines
913 B
Zig
const std = @import("std");
|
|
|
|
pub const requires_stage2 = true;
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
const test_step = b.step("test", "Test it");
|
|
b.default_step = test_step;
|
|
|
|
add(b, test_step, .Debug);
|
|
add(b, test_step, .ReleaseFast);
|
|
add(b, test_step, .ReleaseSmall);
|
|
add(b, test_step, .ReleaseSafe);
|
|
}
|
|
|
|
fn add(b: *std.Build, test_step: *std.Build.Step, optimize: std.builtin.OptimizeMode) void {
|
|
const exe = b.addExecutable(.{
|
|
.name = "extern",
|
|
.root_source_file = .{ .path = "main.zig" },
|
|
.optimize = optimize,
|
|
.target = .{ .cpu_arch = .wasm32, .os_tag = .wasi },
|
|
});
|
|
exe.addCSourceFile(.{ .file = .{ .path = "foo.c" }, .flags = &.{} });
|
|
exe.use_llvm = false;
|
|
exe.use_lld = false;
|
|
|
|
const run = b.addRunArtifact(exe);
|
|
run.skip_foreign_checks = true;
|
|
run.expectStdOutEqual("Result: 30");
|
|
|
|
test_step.dependOn(&run.step);
|
|
}
|