Update install.zig

This commit is contained in:
Jarred Sumner
2022-02-10 18:12:43 -08:00
parent 95c0f28dee
commit 29f0159eae

View File

@@ -3172,6 +3172,10 @@ const PackageInstall = struct {
hardlink,
// Slowest if single-threaded
// Note that copyfile does technically support recursion
// But I suspect it is slower in practice than manually doing it because:
// - it adds syscalls
// - it runs in userspace
copyfile,
const BackendSupport = std.EnumArray(Method, bool);