diff options
Diffstat (limited to 'src/analyze.cpp')
| -rw-r--r-- | src/analyze.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp index bbda180b7f..7e71ac2db3 100644 --- a/src/analyze.cpp +++ b/src/analyze.cpp @@ -5852,6 +5852,9 @@ void find_libc_path(CodeGen *g) { if (!g->libc_lib_dir || buf_len(g->libc_lib_dir) == 0) { zig_panic("Unable to determine libc lib path. probably need to reconfigure"); } + if (!g->libc_static_lib_dir || buf_len(g->libc_static_lib_dir) == 0) { + zig_panic("Unable to determine libc static lib path. probably need to reconfigure"); + } if (!g->libc_include_dir || buf_len(g->libc_include_dir) == 0) { zig_panic("Unable to determine libc include path. probably need to reconfigure"); } |
