aboutsummaryrefslogtreecommitdiff
path: root/src/error.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-02-16 19:58:27 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-02-16 19:58:27 -0500
commit5c54d7bee7ca4d7d7948e2549fd67b61e2dcaf17 (patch)
treee2afba1cbd2b853dc9a8843158f001eb1880b8bf /src/error.cpp
parent20f3b0efff76cb3c611b72c1c1862490aef79b80 (diff)
downloadzig-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.cpp1
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)";
}