diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-23 09:18:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-23 09:18:50 +0200 |
| commit | 2365392e0e2830b147d82ff055bbed3099b21171 (patch) | |
| tree | b37fa80f50f5ee9efea3b805ab357c64fedd6199 /src/Compilation.zig | |
| parent | 5c576573bb67b2d5f481f9f02af1d768b729d796 (diff) | |
| parent | e9b9a27a52fa765ccb8cd838fc24ccfb2085a363 (diff) | |
| download | zig-2365392e0e2830b147d82ff055bbed3099b21171.tar.gz zig-2365392e0e2830b147d82ff055bbed3099b21171.zip | |
Merge pull request #24536 from jacobly0/aarch64
aarch64: add new from scratch self-hosted backend
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 649288dab2..412d6a023c 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -1850,7 +1850,7 @@ pub fn create(gpa: Allocator, arena: Allocator, options: CreateOptions) !*Compil // approach, since the ubsan runtime uses quite a lot of the standard library // and this reduces unnecessary bloat. const ubsan_rt_strat: RtStrat = s: { - const can_build_ubsan_rt = target_util.canBuildLibUbsanRt(target); + const can_build_ubsan_rt = target_util.canBuildLibUbsanRt(target, use_llvm, build_options.have_llvm); const want_ubsan_rt = options.want_ubsan_rt orelse (can_build_ubsan_rt and any_sanitize_c == .full and is_exe_or_dyn_lib); if (!want_ubsan_rt) break :s .none; if (options.skip_linker_dependencies) break :s .none; |
