authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-07-15 20:28:28+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-07-22 08:51:22+02:00
log08e7ac3028da4503d709553a6c12e5751c6ce4fb
treec44b0092a982847b60b35893268f0154df0ad902
parent22362568cf309a4ad3d7e48f9e8635f7cb67fba7

Fix compilation on other hosts


1 files changed, 3 insertions(+), 0 deletions(-)

lib/std/zig/system.zig+3
......@@ -552,6 +552,9 @@ pub const NativeTargetInfo = struct {
552552 error.SystemResources => return error.SystemResources,
553553 error.NotDir => return error.GnuLibCVersionUnavailable,
554554 error.Unexpected => return error.GnuLibCVersionUnavailable,
555 error.InvalidUtf8 => unreachable, // Windows only
556 error.BadPathName => unreachable, // Windows only
557 error.UnsupportedReparsePointType => unreachable, // Windows only
555558 };
556559 return glibcVerFromLinkName(link_name);
557560 }