beetle-pce-fast-libretro/Makefile

718 lines
24 KiB
Makefile
Raw Normal View History

DEBUG = 0
FRONTEND_SUPPORTS_RGB565 = 1
USE_CHEATS = 1
2015-07-26 15:25:48 +00:00
CORE_DIR := .
2017-12-19 01:51:58 +00:00
SPACE :=
SPACE := $(SPACE) $(SPACE)
BACKSLASH :=
BACKSLASH := \$(BACKSLASH)
filter_out1 = $(filter-out $(firstword $1),$1)
filter_out2 = $(call filter_out1,$(call filter_out1,$1))
2018-02-19 10:17:29 +00:00
unixpath = $(subst \,/,$1)
unixcygpath = /$(subst :,,$(call unixpath,$1))
2017-12-19 01:51:58 +00:00
2012-06-09 22:46:41 +00:00
ifeq ($(platform),)
2017-04-06 20:20:25 +00:00
platform = unix
2019-07-26 02:01:27 +00:00
ifeq ($(shell uname -s),)
2017-04-06 20:20:25 +00:00
platform = win
2019-07-26 02:01:27 +00:00
else ifneq ($(findstring Darwin,$(shell uname -s)),)
2017-04-06 20:20:25 +00:00
platform = osx
arch = intel
ifeq ($(shell uname -p),arm64)
arch = arm
endif
2017-04-06 20:20:25 +00:00
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
2019-07-26 02:01:27 +00:00
else ifneq ($(findstring MINGW,$(shell uname -s)),)
2017-04-06 20:20:25 +00:00
platform = win
endif
else ifneq (,$(findstring armv,$(platform)))
2018-11-06 18:32:35 +00:00
ifeq (,$(findstring classic_,$(platform)))
override platform += unix
endif
2017-04-06 20:20:25 +00:00
else ifneq (,$(findstring rpi,$(platform)))
override platform += unix
2012-06-09 22:46:41 +00:00
endif
2012-10-20 20:35:08 +00:00
# If you have a system with 1GB RAM or more - cache the whole
2012-11-25 02:41:54 +00:00
# CD for CD-based systems in order to prevent file access delays/hiccups
2012-10-20 20:35:08 +00:00
CACHE_CD = 0
2015-07-26 15:25:48 +00:00
HAVE_HES = 0
NEED_BPP = 32
NEED_TREMOR = 1
NEED_BLIP = 1
NEED_CD = 1
NEED_CRC32 = 1
CORE_DEFINE := -DWANT_PCE_FAST_EMU -DWANT_STEREO_SOUND
2017-08-05 17:47:05 +00:00
HAVE_CHD = 1
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 0
prefix := /usr
libdir := $(prefix)/lib
LIBRETRO_INSTALL_DIR := libretro
2016-09-07 04:00:43 +00:00
TARGET_NAME := mednafen_pce_fast
2017-04-06 20:20:25 +00:00
# GIT HASH
GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)"
ifneq ($(GIT_VERSION)," unknown")
2017-04-06 20:20:25 +00:00
CXXFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif
2014-04-14 04:51:43 +00:00
arch = intel
ifeq ($(shell uname -p),powerpc)
2017-04-06 20:20:25 +00:00
arch = ppc
2014-04-14 04:51:43 +00:00
endif
2017-04-06 20:20:25 +00:00
# Unix
ifneq (,$(findstring unix,$(platform)))
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro.so
2012-06-09 22:46:41 +00:00
fpic := -fPIC
2012-06-09 22:54:07 +00:00
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
2018-02-05 06:02:58 +00:00
ifneq (,$(findstring Haiku,$(shell uname -s)))
LDFLAGS += -lroot
CXXFLAGS += -fpermissive
else
2016-09-07 04:03:02 +00:00
LDFLAGS += -lrt
2018-02-05 06:02:58 +00:00
endif
2017-04-06 20:20:25 +00:00
2019-07-26 02:01:27 +00:00
ifneq ($(findstring Linux,$(shell uname -s)),)
HAVE_CDROM = 1
endif
2017-04-06 20:20:25 +00:00
# Raspberry Pi
ifneq (,$(findstring rpi,$(platform)))
FLAGS += -fomit-frame-pointer -ffast-math
ifneq (,$(findstring rpi1,$(platform)))
FLAGS += -DARM -marm -march=armv6j -mfpu=vfp -mfloat-abi=hard
else ifneq (,$(findstring rpi2,$(platform)))
FLAGS += -DARM -marm -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
else ifneq (,$(findstring rpi3,$(platform)))
2021-09-11 15:47:30 +00:00
ifneq (,$(findstring rpi3_64,$(platform)))
FLAGS += -DARM -march=armv8-a+crc+simd -mtune=cortex-a53
else
FLAGS += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
endif
2020-11-18 12:17:59 +00:00
else ifneq (,$(findstring rpi4_64,$(platform)))
FLAGS += -DARM -march=armv8-a+crc+simd -mtune=cortex-a72
2017-04-06 20:20:25 +00:00
endif
endif
2018-11-06 18:26:42 +00:00
# Classic Platforms ####################
# Platform affix = classic_<ISA>_<µARCH>
# Help at https://modmyclassic.com/comp
# (armv7 a7, hard point, neon based) ###
# NESC, SNESC, C64 mini
else ifeq ($(platform), classic_armv7_a7)
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
2018-11-06 18:42:04 +00:00
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
2018-11-06 18:26:42 +00:00
FLAGS += -DARM -Ofast \
-flto=4 -fwhole-program -fuse-linker-plugin \
-fdata-sections -ffunction-sections -Wl,--gc-sections \
-fno-stack-protector -fno-ident -fomit-frame-pointer \
-falign-functions=1 -falign-jumps=1 -falign-loops=1 \
-fno-unwind-tables -fno-asynchronous-unwind-tables -fno-unroll-loops \
-fmerge-all-constants -fno-math-errno \
-marm -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
HAVE_NEON = 1
ARCH = arm
2018-11-06 18:42:04 +00:00
LDFLAGS += -marm -mtune=cortex-a7 -mfpu=neon-vfpv4
2018-11-06 18:26:42 +00:00
LDFLAGS += -lrt
ifeq ($(shell echo `$(CC) -dumpversion` "< 4.9" | bc -l), 1)
CFLAGS += -march=armv7-a
else
CFLAGS += -march=armv7ve
# If gcc is 5.0 or later
ifeq ($(shell echo `$(CC) -dumpversion` ">= 5" | bc -l), 1)
LDFLAGS += -static-libgcc -static-libstdc++
endif
endif
#######################################
2017-04-06 20:20:25 +00:00
2021-01-13 16:22:03 +00:00
# (armv8 a35, hard point, neon based) ###
# PlayStation Classic
else ifeq ($(platform), classic_armv8_a35)
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
CFLAGS += -DARM -Ofast \
-fuse-linker-plugin \
-fno-stack-protector -fno-ident -fomit-frame-pointer \
-fmerge-all-constants -ffast-math -funroll-all-loops \
-marm -mcpu=cortex-a35 -mfpu=neon-fp-armv8 -mfloat-abi=hard
CXXFLAGS += $(CFLAGS)
CPPFLAGS += $(CFLAGS)
HAVE_NEON = 1
ARCH = arm
LDFLAGS += -lrt
LDFLAGS += -marm -mcpu=cortex-a35 -mfpu=neon-fp-armv8 -mfloat-abi=hard -Ofast -flto -fuse-linker-plugin
######################################
2017-04-06 20:20:25 +00:00
# OS X
2012-06-09 22:46:41 +00:00
else ifeq ($(platform), osx)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro.dylib
2014-04-14 04:51:43 +00:00
fpic := -fPIC
2012-06-09 22:46:41 +00:00
SHARED := -dynamiclib
2017-04-06 20:20:25 +00:00
ifeq ($(arch),ppc)
ENDIANNESS_DEFINES := -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
OLD_GCC := 1
endif
2014-10-23 07:50:37 +00:00
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
MINVERSION += -mmacosx-version-min=10.7
2020-12-08 01:46:12 +00:00
ifeq ($(OSX_LT_MAVERICKS),"YES")
else
fpic += -stdlib=libc++
endif
ifeq ($(CROSS_COMPILE),1)
TARGET_RULE = -target $(LIBRETRO_APPLE_PLATFORM) -isysroot $(LIBRETRO_APPLE_ISYSROOT)
CFLAGS += $(TARGET_RULE)
CPPFLAGS += $(TARGET_RULE)
CXXFLAGS += $(TARGET_RULE)
LDFLAGS += $(TARGET_RULE)
MINVERSION =
endif
fpic += $(MINVERSION)
2015-10-16 00:51:26 +00:00
# iOS
else ifneq (,$(findstring ios,$(platform)))
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_ios.dylib
2013-03-17 23:08:03 +00:00
fpic := -fPIC
SHARED := -dynamiclib
2017-04-06 20:20:25 +00:00
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)
endif
ifeq ($(platform),ios-arm64)
CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
else
CC = cc -arch armv7 -isysroot $(IOSSDK)
CXX = c++ -arch armv7 -isysroot $(IOSSDK)
endif
2017-04-06 20:20:25 +00:00
IPHONEMINVER :=
2017-09-06 18:04:28 +00:00
ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
2017-04-06 20:20:25 +00:00
IPHONEMINVER = -miphoneos-version-min=8.0
else
IPHONEMINVER = -miphoneos-version-min=5.0
endif
LDFLAGS += $(IPHONEMINVER)
FLAGS += $(IPHONEMINVER) -DHAVE_UNISTD_H
CC += $(IPHONEMINVER)
CXX += $(IPHONEMINVER)
2017-04-06 20:20:25 +00:00
2019-09-11 00:50:32 +00:00
# tvOS
else ifeq ($(platform), tvos-arm64)
TARGET := $(TARGET_NAME)_libretro_tvos.dylib
fpic := -fPIC
SHARED := -dynamiclib
FLAGS += -DHAVE_UNISTD_H
2019-09-11 00:50:32 +00:00
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcodebuild -version -sdk appletvos Path)
endif
2023-05-27 16:03:20 +00:00
CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
2017-04-06 20:20:25 +00:00
# QNX
2013-03-25 06:43:00 +00:00
else ifeq ($(platform), qnx)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).so
2013-03-25 06:43:00 +00:00
fpic := -fPIC
2013-03-29 15:40:42 +00:00
SHARED := -lcpp -lm -shared -Wl,--no-undefined -Wl,--version-script=link.T
2013-09-08 11:41:01 +00:00
CC = qcc -Vgcc_ntoarmv7le
CXX = QCC -Vgcc_ntoarmv7le_cpp
AR = QCC -Vgcc_ntoarmv7le
FLAGS += -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp
2017-04-06 20:20:25 +00:00
2022-02-05 13:03:13 +00:00
# Lightweight PS3 Homebrew SDK
else ifneq (,$(filter $(platform), ps3 psl1ght))
TARGET := $(TARGET_NAME)_libretro_$(platform).a
STATIC_LINKING = 1
ENDIANNESS_DEFINES := -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
CC = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)gcc$(EXE_EXT)
AR = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)ar$(EXE_EXT)
CXX = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)g++$(EXE_EXT)
ifeq ($(platform), psl1ght)
FLAGS += -D__PSL1GHT__
endif
FLAGS += -DARCH_POWERPC_ALTIVEC -D__PS3__ -DUSE_LIBRETRO_VFS
OLD_GCC := 1
2015-08-31 21:42:44 +00:00
# PSP
2012-11-23 20:17:14 +00:00
else ifeq ($(platform), psp1)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
2013-09-08 11:41:01 +00:00
CC = psp-gcc$(EXE_EXT)
CXX = psp-g++$(EXE_EXT)
AR = psp-ar$(EXE_EXT)
FLAGS += -DPSP -G0
STATIC_LINKING = 1
2014-06-22 20:07:16 +00:00
EXTRA_INCLUDES := -I$(shell psp-config --pspsdk-path)/include
2015-08-31 21:42:44 +00:00
# Vita
else ifeq ($(platform), vita)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
2017-04-06 20:20:25 +00:00
CC = arm-vita-eabi-gcc$(EXE_EXT)
CXX = arm-vita-eabi-g++$(EXE_EXT)
AR = arm-vita-eabi-ar$(EXE_EXT)
2017-12-25 03:22:08 +00:00
FLAGS += -DVITA
2015-08-31 21:42:44 +00:00
STATIC_LINKING = 1
2017-04-06 20:20:25 +00:00
# Xbox 360
else ifeq ($(platform), xenon)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_xenon360.a
CC = xenon-gcc$(EXE_EXT)
CXX = xenon-g++$(EXE_EXT)
AR = xenon-ar$(EXE_EXT)
ENDIANNESS_DEFINES += -D__LIBXENON__ -m32 -D__ppc__ -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
2013-09-08 11:41:01 +00:00
STATIC_LINKING = 1
2016-11-07 01:33:36 +00:00
2020-10-01 01:16:17 +00:00
# CTR (3DS)
else ifeq ($(platform), ctr)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(DEVKITARM)/bin/arm-none-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITARM)/bin/arm-none-eabi-g++$(EXE_EXT)
AR = $(DEVKITARM)/bin/arm-none-eabi-ar$(EXE_EXT)
CFLAGS += -D_3DS
CFLAGS += -march=armv6k -mtune=mpcore -mfloat-abi=hard -marm -mfpu=vfp -mtp=soft
CFLAGS += -Wall -mword-relocations
CFLAGS += -fomit-frame-pointer -ffast-math
CXXFLAGS := $(ASFLAGS) $(CFLAGS) -fexceptions -fno-rtti
STATIC_LINKING = 1
2018-09-29 21:30:23 +00:00
# Nintendo Switch (libnx)
else ifeq ($(platform), libnx)
include $(DEVKITPRO)/libnx/switch_rules
EXT=a
TARGET := $(TARGET_NAME)_libretro_$(platform).$(EXT)
DEFINES := -DSWITCH=1 -U__linux__ -U__linux -DRARCH_INTERNAL
CFLAGS := $(DEFINES) -g -O2 -fPIE -I$(LIBNX)/include/ -ffunction-sections -fdata-sections -ftls-model=local-exec -Wl,--allow-multiple-definition -specs=$(LIBNX)/switch.specs
CFLAGS += $(INCDIRS)
CFLAGS += $(INCLUDE) -D__SWITCH__
CXXFLAGS := $(ASFLAGS) $(CFLAGS) -fexceptions -fno-rtti -std=gnu++11
CFLAGS += -std=gnu11
STATIC_LINKING = 1
2017-04-06 20:20:25 +00:00
# Nintendo Game Cube / Wii / WiiU
else ifneq (,$(filter $(platform), ngc wii wiiu))
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
2017-04-06 20:20:25 +00:00
ENDIANNESS_DEFINES += -DGEKKO -mcpu=750 -meabi -mhard-float -DMSB_FIRST -DBYTE_ORDER=BIG_ENDIAN
FLAGS += -U__INT32_TYPE__ -U __UINT32_TYPE__ -D__INT32_TYPE__=int
2017-04-06 20:20:25 +00:00
EXTRA_INCLUDES := -I$(DEVKITPRO)/libogc/include
2013-09-08 11:41:01 +00:00
STATIC_LINKING = 1
2016-11-07 01:33:36 +00:00
2017-04-06 20:20:25 +00:00
# Nintendo WiiU
ifneq (,$(findstring wiiu,$(platform)))
2020-12-29 06:11:34 +00:00
ENDIANNESS_DEFINES += -DWIIU -DHW_RVL -mwup
2016-11-07 01:33:36 +00:00
2017-04-06 20:20:25 +00:00
# Nintendo Wii
else ifneq (,$(findstring wii,$(platform)))
ENDIANNESS_DEFINES += -DHW_RVL -mrvl
2016-11-07 01:33:36 +00:00
2017-04-06 20:20:25 +00:00
# Nintendo Game Cube
else ifneq (,$(findstring ngc,$(platform)))
ENDIANNESS_DEFINES += -DHW_DOL -mrvl
endif
2016-09-07 04:03:02 +00:00
2017-04-06 20:20:25 +00:00
# Emscripten
2016-09-07 04:03:02 +00:00
else ifeq ($(platform), emscripten)
TARGET := $(TARGET_NAME)_libretro_$(platform).bc
STATIC_LINKING = 1
2021-07-15 17:05:46 +00:00
# RS90
else ifeq ($(platform), rs90)
TARGET := $(TARGET_NAME)_libretro.so
CC = /opt/rs90-toolchain/usr/bin/mipsel-linux-gcc
CXX = /opt/rs90-toolchain/usr/bin/mipsel-linux-g++
AR = /opt/rs90-toolchain/usr/bin/mipsel-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
LDFLAGS += -lrt
FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32 -D_GNU_SOURCE
CXXFLAGS += -std=c++11
CFLAGS += -std=gnu11
2017-04-06 20:20:25 +00:00
# GCW Zero
2016-03-01 21:29:35 +00:00
else ifeq ($(platform), gcw0)
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro.so
2016-03-01 21:29:35 +00:00
CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc
CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++
AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
2016-09-07 04:03:02 +00:00
LDFLAGS += -lrt
2020-11-12 16:02:15 +00:00
FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float -D_GNU_SOURCE
CXXFLAGS += -std=c++11
CFLAGS += -std=gnu11
2017-04-06 20:20:25 +00:00
2021-08-01 11:14:32 +00:00
# RETROFW
else ifeq ($(platform), retrofw)
TARGET := $(TARGET_NAME)_libretro.so
CC = /opt/retrofw-toolchain/usr/bin/mipsel-linux-gcc
CXX = /opt/retrofw-toolchain/usr/bin/mipsel-linux-g++
AR = /opt/retrofw-toolchain/usr/bin/mipsel-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
LDFLAGS += -lrt
FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32 -mhard-float -D_GNU_SOURCE
CXXFLAGS += -std=c++11
CFLAGS += -std=gnu11
# MIYOO
else ifeq ($(platform), miyoo)
TARGET := $(TARGET_NAME)_libretro.so
CC = /opt/miyoo/usr/bin/arm-linux-gcc
CXX = /opt/miyoo/usr/bin/arm-linux-g++
AR = /opt/miyoo/usr/bin/arm-linux-ar
fpic := -fPIC
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
LDFLAGS += -lrt
FLAGS += -fomit-frame-pointer -ffast-math -march=armv5te -mtune=arm926ej-s -D_GNU_SOURCE
CXXFLAGS += -std=c++11
CFLAGS += -std=gnu11
2017-12-19 01:51:58 +00:00
# Windows MSVC 2017 all architectures
else ifneq (,$(findstring windows_msvc2017,$(platform)))
WINDOWS_VERSION=1
NO_GCC := 1
2019-07-30 05:35:49 +00:00
HAVE_CDROM = 1
2017-12-19 01:51:58 +00:00
PlatformSuffix = $(subst windows_msvc2017_,,$(platform))
ifneq (,$(findstring desktop,$(PlatformSuffix)))
WinPartition = desktop
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_DESKTOP_APP -FS
LDFLAGS += -MANIFEST -LTCG:incremental -NXCOMPAT -DYNAMICBASE -DEBUG -OPT:REF -INCREMENTAL:NO -SUBSYSTEM:WINDOWS -MANIFESTUAC:"level='asInvoker' uiAccess='false'" -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1
LIBS += kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib
else ifneq (,$(findstring uwp,$(PlatformSuffix)))
2019-07-30 05:35:49 +00:00
HAVE_CDROM = 0
2017-12-19 01:51:58 +00:00
WinPartition = uwp
2018-05-31 04:38:10 +00:00
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WINDLL -D_UNICODE -DUNICODE -D__WRL_NO_DEFAULT_LIB__ -EHsc -FS
2017-12-19 01:51:58 +00:00
LDFLAGS += -APPCONTAINER -NXCOMPAT -DYNAMICBASE -MANIFEST:NO -LTCG -OPT:REF -SUBSYSTEM:CONSOLE -MANIFESTUAC:NO -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1 -DEBUG:FULL -WINMD:NO
LIBS += WindowsApp.lib
endif
CFLAGS += $(MSVC2017CompileFlags)
CXXFLAGS += $(MSVC2017CompileFlags)
TargetArchMoniker = $(subst $(WinPartition)_,,$(PlatformSuffix))
CC = cl.exe
CXX = cl.exe
LD = link.exe
reg_query = $(call filter_out2,$(subst $2,,$(shell reg query "$2" -v "$1" 2>nul)))
fix_path = $(subst $(SPACE),\ ,$(subst \,/,$1))
ProgramFiles86w := $(shell cmd /c "echo %PROGRAMFILES(x86)%")
ProgramFiles86 := $(shell cygpath "$(ProgramFiles86w)")
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Wow6432Node\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir ?= $(call reg_query,InstallationFolder,HKEY_CURRENT_USER\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v10.0)
WindowsSdkDir := $(WindowsSdkDir)
WindowsSDKVersion ?= $(firstword $(foreach folder,$(subst $(subst \,/,$(WindowsSdkDir)Include/),,$(wildcard $(call fix_path,$(WindowsSdkDir)Include\*))),$(if $(wildcard $(call fix_path,$(WindowsSdkDir)Include/$(folder)/um/Windows.h)),$(folder),)))$(BACKSLASH)
WindowsSDKVersion := $(WindowsSDKVersion)
VsInstallBuildTools = $(ProgramFiles86)/Microsoft Visual Studio/2017/BuildTools
VsInstallEnterprise = $(ProgramFiles86)/Microsoft Visual Studio/2017/Enterprise
VsInstallProfessional = $(ProgramFiles86)/Microsoft Visual Studio/2017/Professional
VsInstallCommunity = $(ProgramFiles86)/Microsoft Visual Studio/2017/Community
VsInstallRoot ?= $(shell if [ -d "$(VsInstallBuildTools)" ]; then echo "$(VsInstallBuildTools)"; fi)
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallEnterprise)" ]; then echo "$(VsInstallEnterprise)"; fi)
endif
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallProfessional)" ]; then echo "$(VsInstallProfessional)"; fi)
endif
ifeq ($(VsInstallRoot), )
VsInstallRoot = $(shell if [ -d "$(VsInstallCommunity)" ]; then echo "$(VsInstallCommunity)"; fi)
endif
VsInstallRoot := $(VsInstallRoot)
VcCompilerToolsVer := $(shell cat "$(VsInstallRoot)/VC/Auxiliary/Build/Microsoft.VCToolsVersion.default.txt" | grep -o '[0-9\.]*')
VcCompilerToolsDir := $(VsInstallRoot)/VC/Tools/MSVC/$(VcCompilerToolsVer)
WindowsSDKSharedIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\shared")
WindowsSDKUCRTIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\ucrt")
WindowsSDKUMIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\um")
WindowsSDKUCRTLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\ucrt\$(TargetArchMoniker)")
WindowsSDKUMLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\um\$(TargetArchMoniker)")
# For some reason the HostX86 compiler doesn't like compiling for x64
# ("no such file" opening a shared library), and vice-versa.
# Work around it for now by using the strictly x86 compiler for x86, and x64 for x64.
# NOTE: What about ARM?
ifneq (,$(findstring x64,$(TargetArchMoniker)))
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX64
else
VCCompilerToolsBinDir := $(VcCompilerToolsDir)\bin\HostX86
endif
2019-07-26 02:01:27 +00:00
2017-12-19 01:51:58 +00:00
PATH := $(shell IFS=$$'\n'; cygpath "$(VCCompilerToolsBinDir)/$(TargetArchMoniker)"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VsInstallRoot)/Common7/IDE")
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/include")
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/$(TargetArchMoniker)")
2018-05-31 04:38:10 +00:00
ifneq (,$(findstring uwp,$(PlatformSuffix)))
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
endif
2017-12-19 01:51:58 +00:00
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir)
export LIB := $(LIB);$(WindowsSDKUCRTLibDir);$(WindowsSDKUMLibDir)
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -DLL
2020-09-24 05:12:23 +00:00
WINDOWS_VERSION=1
2017-12-19 01:51:58 +00:00
2017-07-06 16:01:53 +00:00
# Windows MSVC 2010 x64
else ifeq ($(platform), windows_msvc2010_x64)
CC = cl.exe
CXX = cl.exe
NO_GCC := 1
PATH := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/bin/amd64"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../IDE")
LIB := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/lib/amd64")
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/include")
2021-02-13 02:01:18 +00:00
WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
WindowsSdkDir ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
2017-07-06 16:01:53 +00:00
2021-02-13 00:23:10 +00:00
WindowsSDKIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include")
WindowsSDKGlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\gl")
WindowsSDKLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\x64")
2017-07-06 16:01:53 +00:00
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 1
2017-07-06 16:01:53 +00:00
2021-02-13 00:23:10 +00:00
INCFLAGS_PLATFORM = -I"$(WindowsSDKIncludeDir)"
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKGlIncludeDir)
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-07-06 16:01:53 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -DLL
2017-08-08 02:32:07 +00:00
WINDOWS_VERSION=1
2017-07-06 16:01:53 +00:00
# Windows MSVC 2010 x86
else ifeq ($(platform), windows_msvc2010_x86)
CC = cl.exe
CXX = cl.exe
NO_GCC := 1
PATH := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/bin"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../IDE")
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS100COMNTOOLS)../../VC/lib")
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/include")
2021-02-13 00:23:10 +00:00
WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
WindowsSdkDir ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
2017-07-06 16:01:53 +00:00
2021-02-13 00:23:10 +00:00
WindowsSDKIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include")
WindowsSDKGlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\gl")
WindowsSDKLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib")
2017-07-06 16:01:53 +00:00
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 1
2021-02-13 00:23:10 +00:00
INCFLAGS_PLATFORM = -I"$(WindowsSDKIncludeDir)"
2017-07-06 16:01:53 +00:00
2021-02-13 00:23:10 +00:00
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKGlIncludeDir)
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-07-06 16:01:53 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -DLL
2017-08-08 02:32:07 +00:00
WINDOWS_VERSION=1
2017-07-06 16:01:53 +00:00
2017-08-05 12:18:39 +00:00
# Windows MSVC 2005 x86
else ifeq ($(platform), windows_msvc2005_x86)
CC = cl.exe
CXX = cl.exe
PATH := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../IDE")
2019-07-30 01:33:39 +00:00
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VS80COMNTOOLS)../../VC/include")
2017-08-05 12:18:39 +00:00
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS80COMNTOOLS)../../VC/lib")
BIN := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin")
2021-09-23 20:50:13 +00:00
#WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\MicrosoftSDK\InstalledSDKs\8F9E5EF3-A9A5-491B-A889-C58EFFECE8B3" -v "Install Dir" | grep -o '[A-Z]:\\.*')
WindowsSdkDir := $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.1A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
WindowsSdkDir ?= $(shell reg query "HKLM\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A" -v "InstallationFolder" | grep -o '[A-Z]:\\.*')
2017-08-05 12:18:39 +00:00
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 1
2021-02-13 00:23:10 +00:00
WindowsSDKIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include")
WindowsSDKAtlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\atl")
WindowsSDKCrtIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\crt")
WindowsSDKGlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\gl")
WindowsSDKMfcIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\mfc")
WindowsSDKLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib")
2021-09-23 20:50:13 +00:00
INCFLAGS_PLATFORM = -I"$(WindowsSDKIncludeDir)"
2021-02-13 00:23:10 +00:00
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKAtlIncludeDir);$(WindowsSDKCrtIncludeDir);$(WindowsSDKGlIncludeDir);$(WindowsSDKMfcIncludeDir);libretro-common/include/compat/msvc
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-08-05 12:18:39 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -DLL
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
LIBS =
2017-08-08 02:32:07 +00:00
WINDOWS_VERSION=1
2017-08-05 12:18:39 +00:00
2018-02-19 10:17:29 +00:00
# Windows MSVC 2003 Xbox 1
else ifeq ($(platform), xbox1_msvc2003)
TARGET := $(TARGET_NAME)_libretro_xdk1.lib
CC = CL.exe
CXX = CL.exe
LD = lib.exe
export INCLUDE := $(XDK)/xbox/include
export LIB := $(XDK)/xbox/lib
PATH := $(call unixcygpath,$(XDK)/xbox/bin/vc71):$(PATH)
CFLAGS += -D_XBOX -D_XBOX1
CXXFLAGS += -D_XBOX -D_XBOX1
STATIC_LINKING=1
2018-02-20 20:54:57 +00:00
HAVE_CHD = 0
2018-02-19 10:17:29 +00:00
2017-12-25 03:29:57 +00:00
# Windows MSVC 2003 x86
else ifeq ($(platform), windows_msvc2003_x86)
CC = cl.exe
CXX = cl.exe
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 1
2017-12-25 03:29:57 +00:00
PATH := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../IDE")
2019-07-30 01:33:39 +00:00
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VS71COMNTOOLS)../../Vc7/include")
2017-12-25 03:29:57 +00:00
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS71COMNTOOLS)../../Vc7/lib")
BIN := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin")
WindowsSdkDir := $(INETSDK)
export INCLUDE := $(INCLUDE);$(INETSDK)/Include;libretro-common/include/compat/msvc
export LIB := $(LIB);$(WindowsSdkDir);$(INETSDK)/Lib
TARGET := $(TARGET_NAME)_libretro.dll
LDFLAGS += -DLL
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
2017-12-25 03:31:05 +00:00
WINDOWS_VERSION=1
2017-12-25 03:29:57 +00:00
2017-04-06 20:20:25 +00:00
# Windows
2012-06-09 22:46:41 +00:00
else
2016-09-07 04:00:43 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
2019-06-04 19:06:04 +00:00
CC ?= gcc
CXX ?= g++
2012-06-09 22:54:07 +00:00
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
2012-06-09 22:46:41 +00:00
LDFLAGS += -static-libgcc -static-libstdc++ -lwinmm
2019-07-26 02:01:27 +00:00
HAVE_CDROM = 1
2017-08-08 02:32:07 +00:00
WINDOWS_VERSION=1
2017-04-06 20:20:25 +00:00
2012-06-09 22:46:41 +00:00
endif
2015-07-26 15:25:48 +00:00
include Makefile.common
2017-07-06 16:01:53 +00:00
ifneq (,$(findstring msvc,$(platform)))
WARNINGS :=
else
2012-11-15 17:35:26 +00:00
WARNINGS := -Wall \
-Wno-sign-compare \
-Wno-unused-variable \
-Wno-unused-function \
-Wno-uninitialized \
$(NEW_GCC_WARNING_FLAGS) \
-Wno-strict-aliasing
2013-04-30 22:03:33 +00:00
EXTRA_GCC_FLAGS := -funroll-loops
2017-07-06 16:01:53 +00:00
endif
2012-11-15 17:35:26 +00:00
ifeq ($(NO_GCC),1)
2017-04-06 20:20:25 +00:00
EXTRA_GCC_FLAGS :=
WARNINGS :=
2012-11-15 17:35:26 +00:00
endif
2021-02-14 20:54:23 +00:00
ifeq ($(DEBUG),1)
2017-07-06 16:01:53 +00:00
FLAGS += -O0 -g
2021-02-14 20:54:23 +00:00
else
FLAGS += -O2 -DNDEBUG $(EXTRA_GCC_FLAGS)
endif
ifneq (,$(findstring msvc,$(platform)))
ifeq ($(DEBUG), 1)
CFLAGS += -MTd
CXXFLAGS += -MTd
else
CFLAGS += -MT
CXXFLAGS += -MT
endif
endif
2012-11-15 17:35:26 +00:00
LDFLAGS += $(fpic) $(SHARED)
FLAGS += $(fpic) $(NEW_GCC_FLAGS)
2017-07-06 16:01:53 +00:00
FLAGS += $(INCFLAGS) $(INCFLAGS_PLATFORM)
2012-11-15 17:35:26 +00:00
2022-06-10 14:17:38 +00:00
FLAGS += $(ENDIANNESS_DEFINES) $(WARNINGS) -DMEDNAFEN_VERSION_NUMERIC=931 $(CORE_DEFINE) -DSTDC_HEADERS -D__STDC_LIMIT_MACROS -D__LIBRETRO__ -D_LOW_ACCURACY_ $(EXTRA_INCLUDES) $(SOUND_DEFINE)
2012-06-03 15:48:14 +00:00
2017-07-06 16:01:53 +00:00
ifneq (,$(findstring msvc,$(platform)))
FLAGS += -DINLINE="_inline"
else
FLAGS += -DINLINE="inline"
endif
2012-10-20 20:35:08 +00:00
ifeq ($(CACHE_CD), 1)
FLAGS += -D__LIBRETRO_CACHE_CD__
endif
2019-07-26 02:01:27 +00:00
ifeq ($(HAVE_CDROM), 1)
FLAGS += -DHAVE_CDROM
ifeq ($(CDROM_DEBUG), 1)
FLAGS += -DCDROM_DEBUG
endif
endif
2012-06-03 15:48:14 +00:00
CXXFLAGS += $(FLAGS)
2021-02-14 20:54:23 +00:00
CFLAGS += $(FLAGS)
2012-06-03 15:48:14 +00:00
2018-01-17 02:00:29 +00:00
OBJOUT = -o
2017-07-06 16:01:53 +00:00
LINKOUT = -o
ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo
LINKOUT = -out:
2018-05-31 05:43:20 +00:00
ifeq ($(STATIC_LINKING),1)
LD ?= lib.exe
STATIC_LINKING=0
else
2017-07-06 16:01:53 +00:00
LD = link.exe
2018-05-31 05:43:20 +00:00
endif
2017-07-06 16:01:53 +00:00
else
LD = $(CXX)
endif
2021-02-14 20:54:23 +00:00
OBJECTS := $(SOURCES_CXX:.cpp=.o) $(SOURCES_C:.c=.o)
all: $(TARGET)
2012-06-03 15:48:14 +00:00
$(TARGET): $(OBJECTS)
2021-05-11 09:19:42 +00:00
ifeq ($(STATIC_LINKING), 1)
2012-11-20 16:29:55 +00:00
$(AR) rcs $@ $(OBJECTS)
else
2020-10-08 15:19:11 +00:00
$(LD) $(LINKOUT)$@ $^ $(LDFLAGS) $(LIBS)
2012-11-20 16:29:55 +00:00
endif
2012-06-03 15:48:14 +00:00
%.o: %.cpp
2020-09-24 05:12:23 +00:00
$(CXX) -c $(OBJOUT)$@ $< $(CPPFLAGS) $(CXXFLAGS)
2012-06-03 15:48:14 +00:00
%.o: %.c
2020-09-24 05:12:23 +00:00
$(CC) -c $(OBJOUT)$@ $< $(CPPFLAGS) $(CFLAGS)
2012-06-03 15:48:14 +00:00
clean:
2020-09-24 05:12:23 +00:00
rm -f $(OBJECTS)
2019-11-09 02:04:02 +00:00
rm -f $(TARGET)
2012-06-03 15:48:14 +00:00
install:
install -D -m 755 $(TARGET) $(DESTDIR)$(libdir)/$(LIBRETRO_INSTALL_DIR)/$(TARGET)
uninstall:
rm $(DESTDIR)$(libdir)/$(LIBRETRO_INSTALL_DIR)/$(TARGET)
2012-06-03 15:48:14 +00:00
.PHONY: clean