[PATCH] D36066: [compiler-rt] Fix mingw-w64 cross compilation

Martin Storsjö via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 30 23:05:18 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL309537: [builtins] Fix mingw-w64 cross compilation (authored by mstorsjo).

Changed prior to commit:
  https://reviews.llvm.org/D36066?vs=108844&id=108859#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D36066

Files:
  compiler-rt/trunk/lib/builtins/enable_execute_stack.c


Index: compiler-rt/trunk/lib/builtins/enable_execute_stack.c
===================================================================
--- compiler-rt/trunk/lib/builtins/enable_execute_stack.c
+++ compiler-rt/trunk/lib/builtins/enable_execute_stack.c
@@ -22,7 +22,7 @@
 
 #ifdef _WIN32
 #define WIN32_LEAN_AND_MEAN
-#include <Windows.h>
+#include <windows.h>
 #else
 #ifndef __APPLE__
 #include <unistd.h>


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D36066.108859.patch
Type: text/x-patch
Size: 400 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170731/c510e989/attachment.bin>


More information about the llvm-commits mailing list