From 2bf6c28bc3e535deb651d5b37e332226e0d38930 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 11 Feb 2016 01:33:27 -0700 Subject: ability to cross compile hello_libc.zig can produce a windows build --- src/analyze.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/analyze.cpp') 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."); } } -- cgit v1.2.3