zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit e0670557b4e77a43a79f466fb755b03dd648a948 (tree)
parent 3714d524c3267e21979ee4c288528ae3d923542c
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed, 10 Jul 2019 20:20:53 -0400

fix windows not able to build mingw

Diffstat:
Msrc/link.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/link.cpp b/src/link.cpp @@ -1222,8 +1222,8 @@ static const char *get_libc_crt_file(CodeGen *parent, const char *file) { c_file->args.append("-isystem"); c_file->args.append(path_from_libc(parent, "include" OS_SEP "any-windows-any")); - c_file->args.append("-I"); - c_file->args.append(path_from_libc(parent, "mingw" OS_SEP "include" OS_SEP)); + c_file->args.append("-isystem"); + c_file->args.append(path_from_libc(parent, "mingw" OS_SEP "include")); c_file->args.append("-std=gnu99"); c_file->args.append("-D_CRTBLD");