Added support for building tests from MinGW.

This commit is contained in:
xorstream 2015-12-16 12:59:30 +11:00
parent 00f06e0425
commit f111d7d1ca
3 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View file

@ -6,6 +6,7 @@
*.dSYM
*.so
*.so.*
*.exe
qemu/config-all-devices.mak

View file

@ -1,5 +1,11 @@
CFLAGS += -I../include
CFLAGS += -I../../include
ifeq (MING,$(findstring MING,$(shell uname -s)))
LDFLAGS += ../../unicorn.lib $(shell pkg-config --libs glib-2.0) -lpthread -lm
else
LDFLAGS += ../../libunicorn.a $(shell pkg-config --libs glib-2.0) -lpthread -lm
endif
TESTS = map_crash map_write
TESTS += sigill sigill2

View file

@ -15,7 +15,7 @@ but that the code hook is just not occurring.
#include <windows.h>
#define PRIx64 "llX"
#ifdef DYNLOAD
#include <unicorn/unicorn_dynload.h>
#include <unicorn_dynload.h>
#else // DYNLOAD
#include <unicorn/unicorn.h>
#ifdef _WIN64