diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-06-16 16:47:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-16 16:47:00 +0200 |
| commit | 080ee25ecf1991d85038716ca6199ae8dc31c8f5 (patch) | |
| tree | 15c9df991584f50475ce4f160a1cc245b44d6021 /src/target.zig | |
| parent | 5f7780c533411c6272fb3ce3875b7843cc2287e4 (diff) | |
| parent | 872f68c9cbef44817fdbd57e2b1fb90b5c2ddd8c (diff) | |
| download | zig-080ee25ecf1991d85038716ca6199ae8dc31c8f5.tar.gz zig-080ee25ecf1991d85038716ca6199ae8dc31c8f5.zip | |
Merge pull request #24192 from alichraghi/fix_spirv
rename spirv backend name
Diffstat (limited to 'src/target.zig')
| -rw-r--r-- | src/target.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target.zig b/src/target.zig index 0cecc168f5..1d846da879 100644 --- a/src/target.zig +++ b/src/target.zig @@ -813,8 +813,8 @@ pub fn zigBackend(target: std.Target, use_llvm: bool) std.builtin.CompilerBacken .powerpc, .powerpcle, .powerpc64, .powerpc64le => .stage2_powerpc, .riscv64 => .stage2_riscv64, .sparc64 => .stage2_sparc64, - .spirv32 => if (target.os.tag == .opencl) .stage2_spirv64 else .other, - .spirv, .spirv64 => .stage2_spirv64, + .spirv32 => if (target.os.tag == .opencl) .stage2_spirv else .other, + .spirv, .spirv64 => .stage2_spirv, .wasm32, .wasm64 => .stage2_wasm, .x86 => .stage2_x86, .x86_64 => .stage2_x86_64, |
