diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-05 19:39:04 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-02-13 06:42:25 -0700 |
| commit | 9cb52ca6ce7043ba0ce08d5650ac542075f10685 (patch) | |
| tree | 272ce33129d65e8af6f068fb620ac5a3d33370fc /src/glibc.zig | |
| parent | 2654d0c66860d32714e33404554482cbc0cbabf5 (diff) | |
| download | zig-9cb52ca6ce7043ba0ce08d5650ac542075f10685.tar.gz zig-9cb52ca6ce7043ba0ce08d5650ac542075f10685.zip | |
move the cache system from compiler to std lib
Diffstat (limited to 'src/glibc.zig')
| -rw-r--r-- | src/glibc.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glibc.zig b/src/glibc.zig index 8dce1c5132..2a2887c334 100644 --- a/src/glibc.zig +++ b/src/glibc.zig @@ -11,7 +11,7 @@ const target_util = @import("target.zig"); const Compilation = @import("Compilation.zig"); const build_options = @import("build_options"); const trace = @import("tracy.zig").trace; -const Cache = @import("Cache.zig"); +const Cache = std.Build.Cache; const Package = @import("Package.zig"); pub const Lib = struct { |
