| author | |
| committer | |
| log | 1fcabe0bfcad7bd981ce883a2c407f2b023320ad |
| tree | 1d8796335b20d30239188a1d9c14a9625ff044f6 |
| parent | 80c3de40b3a9b9a751200c07d7eaf4d6965ca5c2 |
| signature |
This will just fail if run on architectures like riscv64.1 files changed, 8 insertions(+), 0 deletions(-)
test/standalone/coff_dwarf/build.zig+8| ... | ... | @@ -3,6 +3,14 @@ const builtin = @import("builtin"); |
| 3 | 3 | |
| 4 | 4 | /// This tests the path where DWARF information is embedded in a COFF binary |
| 5 | 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 | 14 | const test_step = b.step("test", "Test it"); |
| 7 | 15 | b.default_step = test_step; |
| 8 | 16 |