diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-02-16 19:58:27 -0500 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-02-16 19:58:27 -0500 |
| commit | 5c54d7bee7ca4d7d7948e2549fd67b61e2dcaf17 (patch) | |
| tree | e2afba1cbd2b853dc9a8843158f001eb1880b8bf /src/error.cpp | |
| parent | 20f3b0efff76cb3c611b72c1c1862490aef79b80 (diff) | |
| download | zig-5c54d7bee7ca4d7d7948e2549fd67b61e2dcaf17.tar.gz zig-5c54d7bee7ca4d7d7948e2549fd67b61e2dcaf17.zip | |
add missing implementations of libc installation to detect msvc paths
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 1e0267eb67..b7cc8e630a 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -79,6 +79,7 @@ const char *err_str(Error err) { case ErrorLibCStdLibHeaderNotFound: return "libc std lib headers not found"; case ErrorLibCKernel32LibNotFound: return "kernel32 library not found"; case ErrorUnsupportedArchitecture: return "unsupported architecture"; + case ErrorWindowsSdkNotFound: return "Windows SDK not found"; } return "(invalid error)"; } |
