Skip to content

Commit

Permalink
zigcc: skip /nologo lowcase
Browse files Browse the repository at this point in the history
  • Loading branch information
kassane committed Jan 17, 2025
1 parent dab4121 commit ffaef9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/zigcc.zig
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub fn main() !void {
} else if (std.mem.eql(u8, arg, "-target")) {
isNative = false;
try cmds.append(arg); // get "-target" flag
} else if (std.mem.eql(u8, arg, "/NOLOGO")) {
} else if (std.mem.eql(u8, arg, "/NOLOGO") or std.mem.eql(u8, arg, "/nologo")) {
// SKIP
} else if (std.mem.eql(u8, arg, "/DEBUG")) {
// SKIP
Expand Down

0 comments on commit ffaef9b

Please sign in to comment.