mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-18 15:27:11 +00:00
fix some Msys complains
This commit is contained in:
parent
d46911d301
commit
200f0d195e
1
Makefile
1
Makefile
|
@ -128,6 +128,7 @@ EXT = dll
|
||||||
AR_EXT = lib
|
AR_EXT = lib
|
||||||
BIN_EXT = .exe
|
BIN_EXT = .exe
|
||||||
UNICORN_QEMU_FLAGS += --disable-stack-protector
|
UNICORN_QEMU_FLAGS += --disable-stack-protector
|
||||||
|
UNICORN_CFLAGS := $(UNICORN_CFLAGS:-fPIC=)
|
||||||
|
|
||||||
# Linux, Darwin
|
# Linux, Darwin
|
||||||
else
|
else
|
||||||
|
|
3
uc.c
3
uc.c
|
@ -1,9 +1,6 @@
|
||||||
/* Unicorn Emulator Engine */
|
/* Unicorn Emulator Engine */
|
||||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
||||||
|
|
||||||
#if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)
|
|
||||||
#pragma warning(disable:4996)
|
|
||||||
#endif
|
|
||||||
#if defined(UNICORN_HAS_OSXKERNEL)
|
#if defined(UNICORN_HAS_OSXKERNEL)
|
||||||
#include <libkern/libkern.h>
|
#include <libkern/libkern.h>
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue