zig/lib/std/Build
Jakub Konka df9462690f std: fix memory bug in getExternalExecutor
Until now, we would pass `candidate: NativeTargetInfo` which creates
a copy of the `NativeTargetInfo.DynamicLinker` buffer. We would then
return this buffer in `bad_dl: []const u8` which would goes out-of-scope
the moment we leave this function frame yielding garbage. To fix this,
we just need to remember to pass by const-pointer
`candidate: *const NativeTargetInfo`.
2023-10-06 12:43:00 +02:00
..
Cache migration: std.math.{min, min3, max, max3} -> @min & @max 2023-06-16 13:44:09 -07:00
Step std: fix memory bug in getExternalExecutor 2023-10-06 12:43:00 +02:00
Cache.zig Cache: Fix findPrefix when paths are slightly out of the ordinary 2023-08-19 22:32:24 -07:00
Step.zig build: add --skip-oom-steps 2023-09-22 15:08:51 -07:00