zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit fb948fbacc282c8e5354ae47eba79b8a38e6fe68 (tree)
parent 27a9240ccbda82056afbe8f08899dc3e516a6d76
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 28 Apr 2024 21:51:41 -0700

zig cc: -Wno-overriding-t-option was renamed

in LLVM commit 1c66d08b0137cef7761b8220d3b7cb7833f57cdb

Diffstat:
Msrc/Compilation.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Compilation.zig b/src/Compilation.zig @@ -5278,7 +5278,7 @@ pub fn addCCArgs( // version as well as the -mmacosx-version-min argument. // Zig provides the correct value in both places, so it // doesn't matter which one gets overridden. - argv.appendAssumeCapacity("-Wno-overriding-t-option"); + argv.appendAssumeCapacity("-Wno-overriding-option"); }, .ios, .tvos, .watchos => switch (target.cpu.arch) { // Pass the proper -m<os>-version-min argument for darwin.