| ... | ... | @@ -283,13 +283,19 @@ test "OptionsStep" { |
| 283 | 283 | |
| 284 | 284 | const host = try std.zig.system.NativeTargetInfo.detect(.{}); |
| 285 | 285 | |
| 286 | var cache: std.Build.Cache = .{ |
| 287 | .gpa = arena.allocator(), |
| 288 | .manifest_dir = std.fs.cwd(), |
| 289 | }; |
| 290 | |
| 286 | 291 | var builder = try std.Build.create( |
| 287 | 292 | arena.allocator(), |
| 288 | 293 | "test", |
| 289 | | "test", |
| 290 | | "test", |
| 291 | | "test", |
| 294 | .{ .path = "test", .handle = std.fs.cwd() }, |
| 295 | .{ .path = "test", .handle = std.fs.cwd() }, |
| 296 | .{ .path = "test", .handle = std.fs.cwd() }, |
| 292 | 297 | host, |
| 298 | &cache, |
| 293 | 299 | ); |
| 294 | 300 | defer builder.destroy(); |
| 295 | 301 | |