mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-27 12:02:05 +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))
|
||||
#$(error end)
|
||||
|
||||
ifeq ($(TARGET_ARCH),x64)
|
||||
DEFINES += -D__SSE__ -D__SSE2__
|
||||
ifeq ($(TARGET_ARCH2),x64)
|
||||
DEFINES += -D__x86_64__
|
||||
else
|
||||
#DEFINES += -D__i686__
|
||||
|
@ -243,7 +243,7 @@ retro_time_t cpu_features_get_time_usec(void)
|
||||
#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
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user