aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-09-16 16:37:21 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-09-16 16:39:04 -0700
commitd11f42c2b24e80388e1ea648ee97fae612fd76a4 (patch)
tree0a2ea0de9f4b6c38ab688c0759f3fce1ba6a84a8 /tools
parent6d37ae95edc06f15e4e77f64e8e637dd5d269183 (diff)
downloadzig-d11f42c2b24e80388e1ea648ee97fae612fd76a4.tar.gz
zig-d11f42c2b24e80388e1ea648ee97fae612fd76a4.zip
zig cc: support -S and -emit-llvm CLI parameters
closes #6425
Diffstat (limited to 'tools')
-rw-r--r--tools/update_clang_options.zig4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig
index 407e813ef3..2a0da66578 100644
--- a/tools/update_clang_options.zig
+++ b/tools/update_clang_options.zig
@@ -376,6 +376,10 @@ const known_options = [_]KnownOpt{
.name = "mexec-model",
.ident = "exec_model",
},
+ .{
+ .name = "emit-llvm",
+ .ident = "emit_llvm",
+ },
};
const blacklisted_options = [_][]const u8{};