diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-02-11 01:33:27 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-02-11 01:33:27 -0700 |
| commit | 2bf6c28bc3e535deb651d5b37e332226e0d38930 (patch) | |
| tree | bb206f61ac612f1c991a7c1c58176a163d51a74f /src/analyze.cpp | |
| parent | 54a8b6a110fa779a2fc12b901b96b6e072bca7cf (diff) | |
| download | zig-2bf6c28bc3e535deb651d5b37e332226e0d38930.tar.gz zig-2bf6c28bc3e535deb651d5b37e332226e0d38930.zip | |
ability to cross compile
hello_libc.zig can produce a windows build
Diffstat (limited to 'src/analyze.cpp')
| -rw-r--r-- | src/analyze.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analyze.cpp b/src/analyze.cpp index 4093b04ea8..287a8667e1 100644 --- a/src/analyze.cpp +++ b/src/analyze.cpp @@ -5929,13 +5929,13 @@ bool handle_is_ptr(TypeTableEntry *type_entry) { void find_libc_path(CodeGen *g) { // later we can handle this better by reporting an error via the normal mechanism if (!g->libc_lib_dir || buf_len(g->libc_lib_dir) == 0) { - zig_panic("Unable to determine libc lib path. probably need to reconfigure"); + zig_panic("Unable to determine libc lib path."); } 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"); + zig_panic("Unable to determine libc static lib path."); } if (!g->libc_include_dir || buf_len(g->libc_include_dir) == 0) { - zig_panic("Unable to determine libc include path. probably need to reconfigure"); + zig_panic("Unable to determine libc include path."); } } |
