mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
(msvc) support msvc's Predefined Macros in features_cpu.c
- add missing defines to makefile.msvc.
This commit is contained in:
parent
3a53010b13
commit
c5de5d9433
@ -108,7 +108,8 @@ export PATH := $(PATH)
|
|||||||
#$(info PATH : $(PATH))
|
#$(info PATH : $(PATH))
|
||||||
#$(error end)
|
#$(error end)
|
||||||
|
|
||||||
ifeq ($(TARGET_ARCH),x64)
|
DEFINES += -D__SSE__ -D__SSE2__
|
||||||
|
ifeq ($(TARGET_ARCH2),x64)
|
||||||
DEFINES += -D__x86_64__
|
DEFINES += -D__x86_64__
|
||||||
else
|
else
|
||||||
#DEFINES += -D__i686__
|
#DEFINES += -D__i686__
|
||||||
|
@ -243,7 +243,7 @@ retro_time_t cpu_features_get_time_usec(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(__x86_64__) || defined(__i386__) || defined(__i486__) || defined(__i686__)
|
#if defined(__x86_64__) || defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_X64) || defined(_M_IX86)
|
||||||
#define CPU_X86
|
#define CPU_X86
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user