| ... | @@ -3,6 +3,14 @@ const builtin = @import("builtin"); | ... | @@ -3,6 +3,14 @@ const builtin = @import("builtin"); |
| 3 | | 3 | |
| 4 | /// This tests the path where DWARF information is embedded in a COFF binary | 4 | /// This tests the path where DWARF information is embedded in a COFF binary |
| 5 | pub fn build(b: *std.Build) void { | 5 | pub fn build(b: *std.Build) void { |
| | 6 | switch (builtin.cpu.arch) { |
| | 7 | .aarch64, |
| | 8 | .x86, |
| | 9 | .x86_64, |
| | 10 | => {}, |
| | 11 | else => return, |
| | 12 | } |
| | 13 | |
| 6 | const test_step = b.step("test", "Test it"); | 14 | const test_step = b.step("test", "Test it"); |
| 7 | b.default_step = test_step; | 15 | b.default_step = test_step; |
| 8 | | 16 | |