mirror of
https://github.com/ziglang/zig.git
synced 2024-11-30 09:02:32 +00:00
85d87c9ca1
This was the cause of aarch64-windows shared libraries causing "bad image" errors during load-time linking. I also re-enabled the tests that were surfacing this bug.
37 lines
1.0 KiB
Zig
37 lines
1.0 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 = if (builtin.os.tag == .windows)
|
|
b.standardTargetOptions(.{})
|
|
else
|
|
b.resolveTargetQuery(.{ .os_tag = .windows });
|
|
|
|
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);
|
|
}
|