diff options
| author | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-04-06 21:51:57 -0600 |
|---|---|---|
| committer | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-04-06 21:51:57 -0600 |
| commit | 798207ec80c0e0092eb85325921c7656fe4c268d (patch) | |
| tree | a4a23aaba8897e035b2e1aa719043832ea0a92c9 /src/error.cpp | |
| parent | ea32a7d2bc395b268e7e5be4fccb3cdb91233e78 (diff) | |
| parent | ab05766674b88dc7715d27f7d590d6832ee005ca (diff) | |
| download | zig-798207ec80c0e0092eb85325921c7656fe4c268d.tar.gz zig-798207ec80c0e0092eb85325921c7656fe4c268d.zip | |
Merge branch 'master' into feature-file-locks
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 03597686b8..d8bb4ac8a2 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -85,6 +85,7 @@ const char *err_str(Error err) { case ErrorInvalidOperatingSystemVersion: return "invalid operating system version"; case ErrorUnknownClangOption: return "unknown Clang option"; case ErrorNestedResponseFile: return "nested response file"; + case ErrorZigIsTheCCompiler: return "Zig was not provided with libc installation information, and so it does not know where the libc paths are on the system. Zig attempted to use the system C compiler to find out where the libc paths are, but discovered that Zig is being used as the system C compiler."; case ErrorFileBusy: return "file is busy"; case ErrorLocked: return "file is locked by another process"; } |
