fix dynamic linker detection on windows (where there isn't one)

This commit is contained in:
Andrew Kelley
2020-02-17 16:03:01 -05:00
parent e26f063b22
commit 4b91e4c91f
3 changed files with 28 additions and 2 deletions

View File

@@ -666,6 +666,6 @@ pub fn getSelfExeSharedLibPaths(allocator: *Allocator) error{OutOfMemory}![][:0]
}
return paths.toOwnedSlice();
},
else => return error.UnimplementedSelfExeSharedPaths,
else => @compileError("getSelfExeSharedLibPaths unimplemented for this target"),
}
}