mirror of
https://github.com/ziglang/zig.git
synced 2026-02-13 04:48:20 +00:00
x86_64: fix ~/! miscomps
This commit is contained in:
parent
d79b3cc134
commit
a744fbd22f
File diff suppressed because it is too large
Load Diff
@ -5,6 +5,7 @@ pub fn build(b: *std.Build) void {
|
||||
"test-filter",
|
||||
"Skip tests that do not match any filter",
|
||||
) orelse &[0][]const u8{};
|
||||
const strip = b.option(bool, "strip", "Omit debug information");
|
||||
|
||||
const compiler_rt_lib = b.addLibrary(.{
|
||||
.linkage = .static,
|
||||
@ -171,6 +172,7 @@ pub fn build(b: *std.Build) void {
|
||||
const test_mod = b.createModule(.{
|
||||
.root_source_file = b.path(path),
|
||||
.target = target,
|
||||
.strip = strip,
|
||||
});
|
||||
const test_exe = b.addTest(.{
|
||||
.name = std.fs.path.stem(path),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user