diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-03-27 22:24:40 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-03-27 22:24:40 -0400 |
| commit | a25874108470f97c5c58d72b2df49a9085c79b2e (patch) | |
| tree | d68193ddaeedef8dc97ea2d8436798a34e405d65 /src/error.cpp | |
| parent | e803490a562cdc6f0f8aa03a6d35c1b7c78379f7 (diff) | |
| download | zig-a25874108470f97c5c58d72b2df49a9085c79b2e.tar.gz zig-a25874108470f97c5c58d72b2df49a9085c79b2e.zip | |
initial support of response files
See #4833
It doesn't support comments or quotes yet.
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 c246ea5f31..76b510ecf3 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -84,6 +84,7 @@ const char *err_str(Error err) { case ErrorInvalidAbiVersion: return "invalid C ABI version"; case ErrorInvalidOperatingSystemVersion: return "invalid operating system version"; case ErrorUnknownClangOption: return "unknown Clang option"; + case ErrorNestedResponseFile: return "nested response file"; } return "(invalid error)"; } |
