mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 06:45:24 +00:00
libs: fix caching behavior
glibc, freebsd, and netbsd all do caching manually, because of the fact that they emit multiple files which they want to cache as a block. Therefore, the individual sub-compilation on a cache miss should be using `CacheMode.none` so that we can specify the output paths for each sub-compilation as being in the shared output directory.
This commit is contained in:
parent
ac745edbbd
commit
e28b699cbf
@ -1073,12 +1073,14 @@ fn buildSharedLib(
|
||||
.dirs = comp.dirs.withoutLocalCache(),
|
||||
.thread_pool = comp.thread_pool,
|
||||
.self_exe_path = comp.self_exe_path,
|
||||
.cache_mode = .incremental,
|
||||
// Because we manually cache the whole set of objects, we don't cache the individual objects
|
||||
// within it. In fact, we *can't* do that, because we need `emit_bin` to specify the path.
|
||||
.cache_mode = .none,
|
||||
.config = config,
|
||||
.root_mod = root_mod,
|
||||
.root_name = lib.name,
|
||||
.libc_installation = comp.libc_installation,
|
||||
.emit_bin = .yes_cache,
|
||||
.emit_bin = .{ .yes_path = try bin_directory.join(arena, &.{basename}) },
|
||||
.verbose_cc = comp.verbose_cc,
|
||||
.verbose_link = comp.verbose_link,
|
||||
.verbose_air = comp.verbose_air,
|
||||
|
||||
@ -1239,12 +1239,14 @@ fn buildSharedLib(
|
||||
.dirs = comp.dirs.withoutLocalCache(),
|
||||
.thread_pool = comp.thread_pool,
|
||||
.self_exe_path = comp.self_exe_path,
|
||||
.cache_mode = .incremental,
|
||||
// Because we manually cache the whole set of objects, we don't cache the individual objects
|
||||
// within it. In fact, we *can't* do that, because we need `emit_bin` to specify the path.
|
||||
.cache_mode = .none,
|
||||
.config = config,
|
||||
.root_mod = root_mod,
|
||||
.root_name = lib.name,
|
||||
.libc_installation = comp.libc_installation,
|
||||
.emit_bin = .yes_cache,
|
||||
.emit_bin = .{ .yes_path = try bin_directory.join(arena, &.{basename}) },
|
||||
.verbose_cc = comp.verbose_cc,
|
||||
.verbose_link = comp.verbose_link,
|
||||
.verbose_air = comp.verbose_air,
|
||||
|
||||
@ -737,12 +737,14 @@ fn buildSharedLib(
|
||||
.dirs = comp.dirs.withoutLocalCache(),
|
||||
.thread_pool = comp.thread_pool,
|
||||
.self_exe_path = comp.self_exe_path,
|
||||
.cache_mode = .incremental,
|
||||
// Because we manually cache the whole set of objects, we don't cache the individual objects
|
||||
// within it. In fact, we *can't* do that, because we need `emit_bin` to specify the path.
|
||||
.cache_mode = .none,
|
||||
.config = config,
|
||||
.root_mod = root_mod,
|
||||
.root_name = lib.name,
|
||||
.libc_installation = comp.libc_installation,
|
||||
.emit_bin = .yes_cache,
|
||||
.emit_bin = .{ .yes_path = try bin_directory.join(arena, &.{basename}) },
|
||||
.verbose_cc = comp.verbose_cc,
|
||||
.verbose_link = comp.verbose_link,
|
||||
.verbose_air = comp.verbose_air,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user