mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 14:54:42 +00:00
* `doc/langref` formatting
* upgrade `.{ .path = "..." }` to `b.path("...")`
* avoid using arguments named `self`
* make `Build.Step.Id` usage more consistent
* add `Build.pathResolve`
* use `pathJoin` and `pathResolve` everywhere
* make sure `Build.LazyPath.getPath2` returns an absolute path
40 lines
1.1 KiB
Zig
40 lines
1.1 KiB
Zig
const std = @import("std");
|
|
const builtin = @import("builtin");
|
|
|
|
/// This tests the path where DWARF information is embedded in a COFF binary
|
|
pub fn build(b: *std.Build) void {
|
|
const test_step = b.step("test", "Test it");
|
|
b.default_step = test_step;
|
|
|
|
const optimize: std.builtin.OptimizeMode = .Debug;
|
|
const target = b.standardTargetOptions(.{});
|
|
|
|
if (builtin.os.tag != .windows) return;
|
|
|
|
if (builtin.cpu.arch == .aarch64) {
|
|
// https://github.com/ziglang/zig/issues/18427
|
|
return;
|
|
}
|
|
|
|
const exe = b.addExecutable(.{
|
|
.name = "main",
|
|
.root_source_file = b.path("main.zig"),
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
|
|
const lib = b.addSharedLibrary(.{
|
|
.name = "shared_lib",
|
|
.optimize = optimize,
|
|
.target = target,
|
|
});
|
|
lib.addCSourceFile(.{ .file = b.path("shared_lib.c"), .flags = &.{"-gdwarf"} });
|
|
lib.linkLibC();
|
|
exe.linkLibrary(lib);
|
|
|
|
const run = b.addRunArtifact(exe);
|
|
run.expectExitCode(0);
|
|
run.skip_foreign_checks = true;
|
|
|
|
test_step.dependOn(&run.step);
|
|
}
|