diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-03-21 10:12:28 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-03-21 15:39:39 -0400 |
| commit | a4eaeee72011a2f7866a18420812178991feaf8d (patch) | |
| tree | af0e54122bf4c94e32f9d8f0ca000379a3d579a7 /src/error.cpp | |
| parent | beea478acc2491289ec3e3bbdcec3b68f65d6e62 (diff) | |
| download | zig-a4eaeee72011a2f7866a18420812178991feaf8d.tar.gz zig-a4eaeee72011a2f7866a18420812178991feaf8d.zip | |
ability to use `zig cc` as a drop-in C compiler
The basics are working
Diffstat (limited to 'src/error.cpp')
| -rw-r--r-- | src/error.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.cpp b/src/error.cpp index 2e92a98217..c246ea5f31 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -83,6 +83,7 @@ const char *err_str(Error err) { case ErrorTargetHasNoDynamicLinker: return "target has no dynamic linker"; case ErrorInvalidAbiVersion: return "invalid C ABI version"; case ErrorInvalidOperatingSystemVersion: return "invalid operating system version"; + case ErrorUnknownClangOption: return "unknown Clang option"; } return "(invalid error)"; } |
