From cdbd299800806f5c4569da160c3b80d443232f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Sat, 20 Jun 2020 00:39:22 +0300 Subject: [PATCH] [Support] Fix building for mingw on a case sensitive file system This fixes cross building on a case sensitive file system after 2e613d2ded2c465bd06bd3cac30ffb4576bf72cc. (The official Windows SDKs don't have self-consistent casing and can't be used as such on case sentisive file systems without case fixups, while mingw headers consistently use lower case.) --- llvm/lib/Support/Windows/Program.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/Windows/Program.inc b/llvm/lib/Support/Windows/Program.inc index 70b0714d1808..9fe05d24ec2e 100644 --- a/llvm/lib/Support/Windows/Program.inc +++ b/llvm/lib/Support/Windows/Program.inc @@ -18,7 +18,7 @@ #include "llvm/Support/Windows/WindowsSupport.h" #include "llvm/Support/WindowsError.h" #include "llvm/Support/raw_ostream.h" -#include +#include #include #include #include