| author | |
| committer | |
| log | 7d4e8be0de7cee4ccbf3290cd7c6da85d679052c |
| tree | f1223e9650d8e2083862b6d8bce82e4487c4c1bd |
| parent | af89bb05d392b34a9ac257d166df1c794542f2e8 |
| signature |
It'll still pick .musl for os.tag == .wasi.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Target.zig+1-1| ... | ... | @@ -815,7 +815,7 @@ pub const Abi = enum { |
| 815 | 815 | // - vertex |
| 816 | 816 | |
| 817 | 817 | pub fn default(arch: Cpu.Arch, os: Os) Abi { |
| 818 | return if (arch.isWasm()) .musl else switch (os.tag) { | |
| 818 | return switch (os.tag) { | |
| 819 | 819 | .freestanding, .other => switch (arch) { |
| 820 | 820 | // Soft float is usually a sane default for freestanding. |
| 821 | 821 | .arm, |