| author | |
| committer | |
| log | fc93ab7182662bad6826b827e8bcf034fc90c3f8 |
| tree | da5825f42ef16de029a4cbe0e304507515dd6457 |
| parent | 0def4e0db0a7000739a0bd409c51de377ce7b693 |
| signature |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Target.zig+1-1| ... | @@ -144,7 +144,7 @@ pub const Os = struct { | ... | @@ -144,7 +144,7 @@ pub const Os = struct { |
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | pub inline fn isGnuLibC(tag: Os.Tag, abi: Abi) bool { | 146 | pub inline fn isGnuLibC(tag: Os.Tag, abi: Abi) bool { |
| 147 | return tag == .linux and abi.isGnu(); | 147 | return (tag == .hurd or tag == .linux) and abi.isGnu(); |
| 148 | } | 148 | } |
| 149 | 149 | ||
| 150 | pub fn defaultVersionRange(tag: Tag, arch: Cpu.Arch) Os { | 150 | pub fn defaultVersionRange(tag: Tag, arch: Cpu.Arch) Os { |