From e0670557b4e77a43a79f466fb755b03dd648a948 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 10 Jul 2019 20:20:53 -0400 Subject: fix windows not able to build mingw --- src/link.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/link.cpp') diff --git a/src/link.cpp b/src/link.cpp index 83078d2c71..8cc6f629fc 100644 --- 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"); -- cgit v1.2.3