diff options
author | Raphael <raphael@google.com> | 2010-04-14 12:16:28 -0700 |
---|---|---|
committer | Raphael <raphael@google.com> | 2010-04-14 12:16:28 -0700 |
commit | aea1b87e31b952a733fe6cc6a0be4493a78ea961 (patch) | |
tree | a5098d8468ea918a640ab43cb80409f4a2ca276b /elff | |
parent | 555d73444f8f053323828e354f446ccee41439d5 (diff) | |
download | external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.zip external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.tar.gz external_qemu-aea1b87e31b952a733fe6cc6a0be4493a78ea961.tar.bz2 |
Changes to build Windows emulator under Linux/MinGW
- Linux being case-sensitve, include "windows.h" instead of "Windows.h" is important.
- Use MinGW's windres.
- No pthread needed.
Change-Id: Ib4ce944bb55a8b1d870e230f269c89cb7df0b3f2
Diffstat (limited to 'elff')
-rw-r--r-- | elff/elff-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elff/elff-common.h b/elff/elff-common.h index 922de10..8729736 100644 --- a/elff/elff-common.h +++ b/elff/elff-common.h @@ -23,7 +23,7 @@ #include "memory.h"
#include "errno.h"
#ifdef WIN32
-#include "Windows.h"
+#include "windows.h"
#else // WIN32
#include <sys/mman.h>
#include <sys/stat.h>
|