aboutsummaryrefslogtreecommitdiff
path: root/src/link/MachO/uuid.zig
AgeCommit message (Collapse)Author
4 dayslink.MachO: update parallel hasher to std.IoAndrew Kelley
4 daysupdate all occurrences of std.fs.File to std.Io.FileAndrew Kelley
6 dayscompiler: replace thread pool with `std.Io`Matthew Lugg
Eliminate the `std.Thread.Pool` used in the compiler for concurrency and asynchrony, in favour of the new `std.Io.async` and `std.Io.concurrent` primitives. This removes the last usage of `std.Thread.Pool` in the Zig repository.
2024-01-24macho: write to fileJakub Konka
2024-01-24macho: get the ball rolling!Jakub Konka
2024-01-24macho: copy over new implementation sources from zldJakub Konka
2024-01-08Use a fixed chunk size when calculating MachO UUIDJeremy Volkman
2023-11-29Remove all usages of `std.mem.copy` and remove `std.mem.set` (#18143)David Rubin
2023-11-08MachO: support `-fsingle-threaded` modeJacob Young
2023-08-29macho: merge Zld state with MachO stateJakub Konka
2023-06-19macho: exclude code signature padding from uuid calculationJakub Konka
2023-06-19macho: clean up hasher interfaceJakub Konka
2023-06-19macho: calculate UUID chunk size based on available thread countJakub Konka
2023-06-19macho: hash the entire file contents for UUID but calc in parallelJakub Konka