diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-12-04 12:35:04 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-01-01 17:51:18 -0700 |
| commit | 3179f58c414b5e4845b9bf3acdf276fe8e2b88a0 (patch) | |
| tree | 23d8f051385f7948aa8c97ece358fdbe35b86803 /test/cbe.zig | |
| parent | 67d48b94d601521e15dd44c8789b1f528d09f10c (diff) | |
| download | zig-3179f58c414b5e4845b9bf3acdf276fe8e2b88a0.tar.gz zig-3179f58c414b5e4845b9bf3acdf276fe8e2b88a0.zip | |
rename std.zig.CrossTarget to std.Target.Query
Diffstat (limited to 'test/cbe.zig')
| -rw-r--r-- | test/cbe.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cbe.zig b/test/cbe.zig index b45a4e5f72..26724a1df0 100644 --- a/test/cbe.zig +++ b/test/cbe.zig @@ -5,7 +5,7 @@ const nl = if (@import("builtin").os.tag == .windows) "\r\n" else "\n"; pub fn addCases(ctx: *Cases, b: *std.Build) !void { // These tests should work with all platforms, but we're using linux_x64 for // now for consistency. Will be expanded eventually. - const linux_x64: std.zig.CrossTarget = .{ + const linux_x64: std.Target.Query = .{ .cpu_arch = .x86_64, .os_tag = .linux, }; |
