mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 04:08:12 +00:00
Added support for building tests from MinGW.
This commit is contained in:
parent
00f06e0425
commit
f111d7d1ca
3 changed files with 9 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@
|
|||
*.dSYM
|
||||
*.so
|
||||
*.so.*
|
||||
*.exe
|
||||
|
||||
qemu/config-all-devices.mak
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue