Genesis-Plus-GX/Makefile.libretro

903 lines
32 KiB
Makefile
Raw Permalink Normal View History

2012-07-09 21:14:35 +00:00
DEBUG = 0
2012-07-10 17:15:26 +00:00
LOGSOUND = 0
FRONTEND_SUPPORTS_RGB565 = 1
HAVE_CHD = 1
2017-09-07 00:25:35 +00:00
HAVE_SYS_PARAM = 1
HOOK_CPU = 0
2019-07-14 03:25:10 +00:00
HAVE_CDROM = 0
USE_PER_SOUND_CHANNELS_CONFIG = 1
LOW_MEMORY = 0
MAX_ROM_SIZE = 10485760
2012-07-09 21:14:35 +00:00
2017-09-06 16:59:04 +00:00
CORE_DIR := .
2017-12-18 08:32:41 +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))
unixpath = $(subst \,/,$1)
unixcygpath = /$(subst :,,$(call unixpath,$1))
# system platform
2017-04-20 03:20:26 +00:00
ifeq ($(platform),)
platform = unix
ifeq ($(shell uname -s),)
2017-04-20 03:20:26 +00:00
platform = win
EXE_EXT = .exe
else ifneq ($(findstring MINGW,$(shell uname -s)),)
2017-04-20 03:20:26 +00:00
platform = win
else ifneq ($(findstring Darwin,$(shell uname -s)),)
2017-04-20 03:20:26 +00:00
platform = osx
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
2021-03-14 02:21:05 +00:00
ifeq ($(shell uname -p),arm)
arch = arm
endif
else ifneq ($(findstring win,$(shell uname -s)),)
2017-04-20 03:20:26 +00:00
platform = win
endif
2021-03-25 01:01:41 +00:00
else ifneq (,$(findstring AMLG,$(platform)))
override platform += unix
2017-04-20 03:20:26 +00:00
else ifneq (,$(findstring armv,$(platform)))
2018-10-31 18:18:13 +00:00
ifeq (,$(findstring classic_,$(platform)))
override platform += unix
endif
2021-03-25 01:01:41 +00:00
else ifneq (,$(findstring RK,$(platform)))
override platform += unix
2017-04-20 03:20:26 +00:00
else ifneq (,$(findstring rpi,$(platform)))
override platform += unix
endif
2019-12-27 07:23:23 +00:00
# system platform
system_platform = unix
ifeq ($(shell uname -a),)
EXE_EXT = .exe
system_platform = win
else ifneq ($(findstring Darwin,$(shell uname -a)),)
system_platform = osx
arch = intel
ifeq ($(shell uname -p),powerpc)
arch = ppc
endif
else ifneq ($(findstring MINGW,$(shell uname -a)),)
system_platform = win
endif
2024-07-08 20:58:48 +00:00
TARGET_NAME := genesis_plus_gx_wide
2017-04-20 03:20:26 +00:00
2017-09-06 16:59:04 +00:00
LIBS := -lm
2017-04-20 03:20:26 +00:00
2019-06-29 17:31:05 +00:00
ifneq ($(SANITIZER),)
CFLAGS := -fsanitize=$(SANITIZER) $(CFLAGS)
CXXFLAGS := -fsanitize=$(SANITIZER) $(CXXFLAGS)
LDFLAGS := -fsanitize=$(SANITIZER) $(LDFLAGS)
endif
2017-01-20 00:35:21 +00:00
GIT_VERSION ?= " $(shell git rev-parse --short HEAD || echo unknown)"
ifneq ($(GIT_VERSION)," unknown")
2017-04-20 03:20:26 +00:00
CFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif
2013-04-17 16:34:21 +00:00
2014-11-15 22:08:58 +00:00
# Unix
2017-04-20 03:20:26 +00:00
ifneq (,$(findstring unix,$(platform)))
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
2017-09-06 16:59:04 +00:00
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
2017-04-20 03:20:26 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
MAX_ROM_SIZE = 33554432
2017-04-20 03:20:26 +00:00
ifneq ($(findstring Linux,$(shell uname -s)),)
HAVE_CDROM = 1
endif
2017-04-20 03:20:26 +00:00
2021-01-13 16:30:00 +00:00
# RockPro64
ifneq (,$(findstring rockpro64,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer -ffast-math
PLATFORM_DEFINES += -DARM -marm -march=armv7ve -mcpu=cortex-a72 -mtune=cortex-a72.cortex-a53 -mfloat-abi=hard
endif
2021-03-25 01:01:41 +00:00
# Rockchip RK3288 e.g. Asus Tinker Board / RK3328 e.g. PINE64 Rock64 / RK3399 e.g. PINE64 RockPro64 - 32-bit userspace
ifneq (,$(findstring RK,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer -ffast-math
PLATFORM_DEFINES += -DARM -marm
ifneq (,$(findstring RK33,$(platform)))
PLATFORM_DEFINES += -march=armv8-a+crc -mfpu=neon-fp-armv8
ifneq (,$(findstring RK3399,$(platform)))
PLATFORM_DEFINES += -mtune=cortex-a72.cortex-a53
else ifneq (,$(findstring RK3328,$(platform)))
PLATFORM_DEFINES += -mtune=cortex-a53
endif
else ifneq (,$(findstring RK3288,$(platform)))
PLATFORM_DEFINES += -march=armv7ve -mtune=cortex-a17 -mfpu=neon-vfpv4
endif
PLATFORM_DEFINES += -mfloat-abi=hard
endif
2021-01-13 16:30:00 +00:00
# Odroid-GOA
ifneq (,$(findstring classic_armv8_a35,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer -ffast-math
PLATFORM_DEFINES += -DARM -marm -march=armv8-a+crc -mfpu=neon-fp-armv8 -mcpu=cortex-a35 -mtune=cortex-a35 -mfloat-abi=hard
endif
# Odroid-N2
ifneq (,$(findstring CortexA73_G12B,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer -ffast-math
PLATFORM_DEFINES += -DARM -march=armv8-a+crc -mcpu=cortex-a73 -mtune=cortex-a73.cortex-a53
endif
2021-03-25 01:01:41 +00:00
# Amlogic S905/S905X/S912 (AMLGXBB/AMLGXL/AMLGXM) e.g. Khadas VIM1/2 / S905X2 (AMLG12A) & S922X/A311D (AMLG12B) e.g. Khadas VIM3 - 32-bit userspace
ifneq (,$(findstring AMLG,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer -ffast-math
PLATFORM_DEFINES += -DARM -marm -march=armv8-a+crc
ifneq (,$(findstring AMLG12,$(platform)))
ifneq (,$(findstring AMLG12B,$(platform)))
PLATFORM_DEFINES += -mtune=cortex-a73.cortex-a53
else
PLATFORM_DEFINES += -mtune=cortex-a53
endif
else ifneq (,$(findstring AMLGX,$(platform)))
PLATFORM_DEFINES += -mtune=cortex-a53
endif
PLATFORM_DEFINES += -mfloat-abi=hard -mfpu=neon-fp-armv8
endif
2017-04-20 03:20:26 +00:00
# Raspberry Pi
ifneq (,$(findstring rpi,$(platform)))
ENDIANNESS_DEFINES += -DALIGN_LONG
CFLAGS += -fomit-frame-pointer
2017-04-20 03:20:26 +00:00
ifneq (,$(findstring rpi1,$(platform)))
PLATFORM_DEFINES += -DARM11 -marm -march=armv6j -mfpu=vfp -mfloat-abi=hard
else ifneq (,$(findstring rpi2,$(platform)))
PLATFORM_DEFINES += -DARM -marm -mcpu=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard
else ifneq (,$(findstring rpi3,$(platform)))
PLATFORM_DEFINES += -DARM -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard
2020-11-18 01:27:19 +00:00
else ifneq (,$(findstring rpi4_64,$(platform)))
PLATFORM_DEFINES += -DARM -march=armv8-a+crc+simd -mtune=cortex-a72
2017-04-20 03:20:26 +00:00
endif
endif
2018-10-31 18:18:13 +00:00
2019-03-02 16:09:00 +00:00
# (armv8 a35, hard point, neon based) ###
# Playstation Classic
else ifeq ($(platform), classic_armv8_a35)
2018-10-31 18:18:13 +00:00
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC
2021-01-13 16:30:00 +00:00
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
2018-10-31 18:18:13 +00:00
CFLAGS += -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 \
2019-03-02 16:09:00 +00:00
-marm -mtune=cortex-a35 -mfpu=neon-fp-armv8 -mfloat-abi=hard
2018-10-31 18:18:13 +00:00
CXXFLAGS += $(CFLAGS)
ASFLAGS += $(CFLAGS)
HAVE_NEON = 1
ARCH = arm
BUILTIN_GPU = neon
USE_DYNAREC = 1
2019-09-16 21:36:45 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
PLATFORM_DEFINES := -DHAVE_ZLIB
2019-03-02 16:09:00 +00:00
CFLAGS += -march=armv8-a
2019-09-16 21:36:45 +00:00
LDFLAGS += -static-libgcc -static-libstdc++
2018-10-31 18:18:13 +00:00
#######################################
2014-11-15 22:08:58 +00:00
2015-09-05 12:48:38 +00:00
# Portable Linux
2015-03-02 16:37:39 +00:00
else ifeq ($(platform), linux-portable)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC -nostdlib
2017-09-06 16:59:04 +00:00
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T
2017-04-20 03:20:26 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
2017-09-06 16:59:04 +00:00
LIBS =
2017-04-20 03:20:26 +00:00
2014-11-15 22:08:58 +00:00
# OS X
2012-07-09 21:14:35 +00:00
else ifeq ($(platform), osx)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC
SHARED := -dynamiclib
2021-03-14 02:21:05 +00:00
MINVERSION :=
2019-12-27 07:23:23 +00:00
ifeq ($(arch),ppc)
2021-03-14 02:21:05 +00:00
ENDIANNESS_DEFINES := -DBYTE_ORDER=BIG_ENDIAN -DCPU_IS_BIG_ENDIAN=1 -DWORDS_BIGENDIAN=1 -DHAVE_NO_LANGEXTRA
else
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
endif
PLATFORM_DEFINES := -DHAVE_ZLIB
MAX_ROM_SIZE = 33554432
2017-04-20 03:20:26 +00:00
OSXVER = `sw_vers -productVersion | cut -d. -f 2`
OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
2021-03-14 02:21:05 +00:00
ifeq ($(OSX_LT_MAVERICKS),YES)
MINVERSION = -mmacosx-version-min=10.1
endif
fpic += $(MINVERSION)
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)
endif
2017-04-20 03:20:26 +00:00
ifndef ($(NOUNIVERSAL))
CFLAGS += $(ARCHFLAGS)
LDFLAGS += $(ARCHFLAGS)
endif
2015-02-01 05:21:22 +00:00
2014-11-15 22:08:58 +00:00
# iOS
2015-10-16 01:05:03 +00:00
else ifneq (,$(findstring ios,$(platform)))
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_ios.dylib
fpic := -fPIC
SHARED := -dynamiclib
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
MAX_ROM_SIZE = 33554432
2021-03-14 02:21:05 +00:00
MINVERSION :=
2017-04-20 03:20:26 +00:00
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcrun -sdk iphoneos -show-sdk-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 arm64 -isysroot $(IOSSDK)
endif
ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
2021-03-14 02:21:05 +00:00
MINVERSION = -miphoneos-version-min=8.0
2017-04-20 03:20:26 +00:00
else
2021-03-14 02:21:05 +00:00
MINVERSION = -miphoneos-version-min=5.0
2017-04-20 03:20:26 +00:00
endif
2021-03-14 02:21:05 +00:00
PLATFORM_DEFINES += $(MINVERSION)
2015-01-07 22:38:26 +00:00
2019-09-02 18:35:41 +00:00
# tvOS
else ifeq ($(platform), tvos-arm64)
TARGET := $(TARGET_NAME)_libretro_tvos.dylib
fpic := -fPIC
SHARED := -dynamiclib
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
ifeq ($(IOSSDK),)
IOSSDK := $(shell xcrun -sdk appletvos -show-sdk-path)
endif
2021-03-14 02:21:05 +00:00
CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
MAX_ROM_SIZE = 33554432
2021-03-14 02:21:05 +00:00
2015-01-07 22:38:26 +00:00
# Theos
2014-12-23 07:39:51 +00:00
else ifeq ($(platform), theos_ios)
2017-04-20 03:20:26 +00:00
DEPLOYMENT_IOSVERSION = 5.0
TARGET = iphone:latest:$(DEPLOYMENT_IOSVERSION)
ARCHS = armv7 armv7s
TARGET_IPHONEOS_DEPLOYMENT_VERSION=$(DEPLOYMENT_IOSVERSION)
THEOS_BUILD_DIR := objs
include $(THEOS)/makefiles/common.mk
2014-11-15 22:08:58 +00:00
2017-04-20 03:20:26 +00:00
LIBRARY_NAME = $(TARGET_NAME)_libretro_ios
2014-12-23 07:39:51 +00:00
2017-04-20 03:20:26 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
2015-01-07 22:38:26 +00:00
# QNX
else ifeq ($(platform), qnx)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_qnx.so
fpic := -fPIC
2017-09-06 16:59:04 +00:00
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
2017-04-20 03:20:26 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB
CC = qcc -Vgcc_ntoarmv7le
CXX = qcc -Vgcc_ntoarmv7le
2017-04-20 03:20:26 +00:00
AR = qcc -Vgcc_ntoarmv7le
PLATFORM_DEFINES := -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp
2014-11-15 22:08:58 +00:00
2021-04-18 18:35:10 +00:00
# PS3/PSL1GHT
else ifneq (,$(filter $(platform), ps3 psl1ght))
ifeq ($(platform), psl1ght)
PLATFORM_DEFINES := -D__PS3__ -D__PSLIGHT__ -DALT_RENDER
else
PLATFORM_DEFINES := -D__PS3__ -DALT_RENDER
2017-04-20 03:20:26 +00:00
endif
2021-04-18 18:35:10 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)gcc$(EXE_EXT)
CXX = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)g++$(EXE_EXT)
AR = $(PS3DEV)/ppu/bin/ppu-$(COMMONLV)ar$(EXE_EXT)
ENDIANNESS_DEFINES := -DBYTE_ORDER=BIG_ENDIAN -DBYTE_ORDER=BIG_ENDIAN -DCPU_IS_BIG_ENDIAN=1 -DWORDS_BIGENDIAN=1
STATIC_LINKING=1
HAVE_SYS_PARAM = 0
MAX_ROM_SIZE = 33554432
2014-11-15 22:08:58 +00:00
# PSP
2012-11-23 19:51:59 +00:00
else ifeq ($(platform), psp1)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = psp-gcc$(EXE_EXT)
CXX = psp-g++$(EXE_EXT)
2017-04-20 03:20:26 +00:00
AR = psp-ar$(EXE_EXT)
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DPSP
CFLAGS += -G0
STATIC_LINKING = 1
USE_PER_SOUND_CHANNELS_CONFIG = 0
2014-11-15 22:08:58 +00:00
2015-08-31 19:43:30 +00:00
# Vita
else ifeq ($(platform), vita)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = arm-vita-eabi-gcc$(EXE_EXT)
CXX = arm-vita-eabi-g++$(EXE_EXT)
2017-04-20 03:20:26 +00:00
AR = arm-vita-eabi-ar$(EXE_EXT)
CFLAGS += -O3 -mfloat-abi=hard -ffast-math -fsingle-precision-constant
ENDIANNESS_DEFINES := -DLSB_FIRST -DALIGN_LONG -DALT_RENDERER -DHAVE_ALLOCA_H -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DVITA
STATIC_LINKING = 1
USE_PER_SOUND_CHANNELS_CONFIG = 0
MAX_ROM_SIZE = 33554432
2015-08-31 19:43:30 +00:00
2015-09-09 05:28:52 +00:00
# CTR (3DS)
else ifeq ($(platform), ctr)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(DEVKITARM)/bin/arm-none-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITARM)/bin/arm-none-eabi-g++$(EXE_EXT)
2017-04-20 03:20:26 +00:00
AR = $(DEVKITARM)/bin/arm-none-eabi-ar$(EXE_EXT)
ENDIANNESS_DEFINES := -DLSB_FIRST -DALIGN_LONG -DBYTE_ORDER=LITTLE_ENDIAN -DUSE_DYNAMIC_ALLOC
PLATFORM_DEFINES := -DARM11 -D_3DS
CFLAGS += -march=armv6k -mtune=mpcore -mfloat-abi=hard -marm -mfpu=vfp
CFLAGS += -Wall -mword-relocations
CFLAGS += -fomit-frame-pointer -ffast-math
STATIC_LINKING = 1
USE_PER_SOUND_CHANNELS_CONFIG = 0
MAX_ROM_SIZE = 33554432
2015-09-09 05:28:52 +00:00
2014-11-15 22:08:58 +00:00
# Xbox 360
2012-07-09 21:14:35 +00:00
else ifeq ($(platform), xenon)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_xenon360.a
CC = xenon-gcc$(EXE_EXT)
CXX = xenon-g++$(EXE_EXT)
2017-04-20 03:20:26 +00:00
AR = xenon-ar$(EXE_EXT)
PLATFORM_DEFINES := -D__LIBXENON__ -DALT_RENDER
ENDIANNESS_DEFINES := -DBYTE_ORDER=BIG_ENDIAN -DBYTE_ORDER=BIG_ENDIAN -DCPU_IS_BIG_ENDIAN=1 -DWORDS_BIGENDIAN=1
2017-04-20 03:20:26 +00:00
STATIC_LINKING = 1
MAX_ROM_SIZE = 33554432
2017-04-20 03:20:26 +00:00
# Nintendo GameCube / Wii / WiiU
else ifneq (,$(filter $(platform), ngc wii wiiu))
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc$(EXE_EXT)
CXX = $(DEVKITPPC)/bin/powerpc-eabi-g++$(EXE_EXT)
2017-04-20 03:20:26 +00:00
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar$(EXE_EXT)
ENDIANNESS_DEFINES := -DBYTE_ORDER=BIG_ENDIAN -DCPU_IS_BIG_ENDIAN=1 -DWORDS_BIGENDIAN=1
2017-04-20 03:20:26 +00:00
PLATFORM_DEFINES := -DGEKKO -mcpu=750 -meabi -mhard-float -DALT_RENDER
2024-06-28 22:46:52 +00:00
PLATFORM_DEFINES += -ffunction-sections -fdata-sections -D__wiiu__ -D__wut__
2017-04-20 03:20:26 +00:00
STATIC_LINKING = 1
USE_PER_SOUND_CHANNELS_CONFIG = 0
2017-04-20 03:20:26 +00:00
# Nintendo WiiU
ifneq (,$(findstring wiiu,$(platform)))
2019-07-17 17:00:22 +00:00
PLATFORM_DEFINES += -DWIIU -DHW_RVL -DUSE_DYNAMIC_ALLOC
MAX_ROM_SIZE = 33554432
2017-04-20 03:20:26 +00:00
# Nintendo Wii
else ifneq (,$(findstring wii,$(platform)))
PLATFORM_DEFINES += -DHW_RVL -mrvl
MAX_ROM_SIZE = 15728640
2017-04-20 03:20:26 +00:00
# Nintendo GameCube
else ifneq (,$(findstring ngc,$(platform)))
PLATFORM_DEFINES += -DHW_DOL -mrvl
endif
2014-11-15 22:08:58 +00:00
2018-01-22 16:04:55 +00:00
# Nintendo Switch (libtransistor)
else ifeq ($(platform), switch)
TARGET := $(TARGET_NAME)_libretro_$(platform).a
include $(LIBTRANSISTOR_HOME)/libtransistor.mk
CFLAGS += -fomit-frame-pointer -ffast-math
STATIC_LINKING=1
STATIC_LINKING_LINK=1
MAX_ROM_SIZE = 33554432
2018-01-22 16:04:55 +00:00
2018-06-20 02:23:02 +00:00
# Nintendo Switch (libnx)
else ifeq ($(platform), libnx)
include $(DEVKITPRO)/libnx/switch_rules
TARGET := $(TARGET_NAME)_libretro_$(platform).a
CFLAGS += -D__SWITCH__ -DHAVE_LIBNX -I$(LIBNX)/include/ -fPIE -Wl,--allow-multiple-definition -specs=$(LIBNX)/switch.specs
PLATFORM_DEFINES += -DARM -march=armv8-a -mtune=cortex-a57 -mtp=soft -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -D__LIBRETRO__ -DALIGN_LONG -DALIGN_WORD -DM68K_OVERCLOCK_SHIFT=20 -DHAVE_ZLIB
STATIC_LINKING=1
STATIC_LINKING_LINK=1
MAX_ROM_SIZE = 33554432
2018-06-20 02:23:02 +00:00
2014-11-15 22:08:58 +00:00
# emscripten
2013-09-15 21:10:42 +00:00
else ifeq ($(platform), emscripten)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro_$(platform).bc
ENDIANNESS_DEFINES := -DLSB_FIRST -DALIGN_LONG -DBYTE_ORDER=LITTLE_ENDIAN -DHAVE_ZLIB
STATIC_LINKING = 1
2014-11-15 22:08:58 +00:00
2021-07-08 12:36:55 +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
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
fpic := -fPIC
LDFLAGS += $(PTHREAD_FLAGS)
CFLAGS += $(PTHREAD_FLAGS) -G0
CFLAGS += -ffast-math -march=mips32 -mtune=mips32 -fomit-frame-pointer
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
USE_PER_SOUND_CHANNELS_CONFIG = 0
LOW_MEMORY = 1
2021-12-08 07:53:31 +00:00
MAX_ROM_SIZE = 16777216
2021-07-08 12:36:55 +00:00
2016-03-04 05:25:04 +00:00
# GCW0
else ifeq ($(platform), gcw0)
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro.so
CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc
CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++
2017-04-20 03:20:26 +00:00
AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar
2017-09-06 16:59:04 +00:00
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
2017-04-20 03:20:26 +00:00
fpic := -fPIC
LDFLAGS += $(PTHREAD_FLAGS)
2020-01-04 03:57:52 +00:00
CFLAGS += $(PTHREAD_FLAGS) -G0
2020-01-04 04:27:31 +00:00
CFLAGS += -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float -fomit-frame-pointer
2020-01-04 03:57:52 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
USE_PER_SOUND_CHANNELS_CONFIG = 0
2021-12-08 07:53:31 +00:00
MAX_ROM_SIZE = 16777216
2017-09-16 04:47:16 +00:00
2021-08-11 10:19:30 +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
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
fpic := -fPIC
LDFLAGS += $(PTHREAD_FLAGS)
CFLAGS += $(PTHREAD_FLAGS) -G0
CFLAGS += -ffast-math -march=mips32 -mtune=mips32 -mhard-float -fomit-frame-pointer
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
USE_PER_SOUND_CHANNELS_CONFIG = 0
2021-12-08 07:53:31 +00:00
MAX_ROM_SIZE = 16777216
# 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
SHARED := -shared -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
fpic := -fPIC
LDFLAGS += $(PTHREAD_FLAGS)
CFLAGS += $(PTHREAD_FLAGS)
CFLAGS += -ffast-math -march=armv5te -mtune=arm926ej-s -fomit-frame-pointer
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
USE_PER_SOUND_CHANNELS_CONFIG = 0
LOW_MEMORY = 1
2021-12-08 07:53:31 +00:00
MAX_ROM_SIZE = 16777216
2021-08-11 10:19:30 +00:00
2017-09-16 04:47:16 +00:00
# Windows MSVC 2003 Xbox 1
else ifeq ($(platform), xbox1_msvc2003)
TARGET := $(TARGET_NAME)_libretro_xdk1.lib
2018-02-18 02:18:48 +00:00
CC = CL.exe
CXX = CL.exe
LD = lib.exe
2019-07-15 04:11:27 +00:00
HAVE_CDROM = 1
2017-09-16 04:47:16 +00:00
export INCLUDE := $(XDK)/xbox/include
export LIB := $(XDK)/xbox/lib
2018-02-18 02:18:48 +00:00
PATH := $(call unixcygpath,$(XDK)/xbox/bin/vc71):$(PATH)
2017-09-16 07:32:56 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
2017-09-16 04:47:16 +00:00
PSS_STYLE :=2
CFLAGS += -D_XBOX -D_XBOX1
CXXFLAGS += -D_XBOX -D_XBOX1
STATIC_LINKING=1
HAS_GCC := 0
HAVE_SYS_PARAM = 0
# Windows MSVC 2010 Xbox 360
else ifeq ($(platform), xbox360_msvc2010)
TARGET := $(TARGET_NAME)_libretro_xdk360.lib
MSVCBINDIRPREFIX = $(XEDK)/bin/win32
CC = "$(MSVCBINDIRPREFIX)/cl.exe"
CXX = "$(MSVCBINDIRPREFIX)/cl.exe"
LD = "$(MSVCBINDIRPREFIX)/lib.exe"
export INCLUDE := $(XEDK)/include/xbox
export LIB := $(XEDK)/lib/xbox
PSS_STYLE :=2
CFLAGS += -D_XBOX -D_XBOX360
CXXFLAGS += -D_XBOX -D_XBOX360
STATIC_LINKING=1
HAS_GCC := 0
HAVE_SYS_PARAM = 0
2019-07-15 04:11:27 +00:00
HAVE_CDROM = 1
2017-09-06 16:59:04 +00:00
# Windows MSVC 2010 x64
else ifeq ($(platform), windows_msvc2010_x64)
CC = cl.exe
CXX = cl.exe
2017-09-07 00:25:35 +00:00
HAVE_SYS_PARAM = 0
2017-09-06 16:59:04 +00:00
PATH := $(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../../VC/bin/amd64"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS100COMNTOOLS)../IDE")
2017-12-24 20:28:02 +00:00
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS100COMNTOOLS)../../VC/lib/amd64")
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VS100COMNTOOLS)../../VC/include")
2017-09-06 16:59:04 +00:00
2021-02-09 18:24:38 +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-09-06 16:59:04 +00:00
2021-02-09 18:24:38 +00:00
WindowsSDKIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include")
WindowsSDKGlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\gl")
WindowsSDKLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\x64")
2017-09-06 16:59:04 +00:00
2021-02-09 18:24:38 +00:00
INCFLAGS_PLATFORM = -I"$(WindowsSDKIncludeDir)"
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKGlIncludeDir)
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-09-06 16:59:04 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
PSS_STYLE :=2
LDFLAGS += -DLL
LIBS =
2017-12-18 08:32:41 +00:00
# Windows MSVC 2017 all architectures
else ifneq (,$(findstring windows_msvc2017,$(platform)))
2017-12-22 01:39:34 +00:00
2017-12-18 08:32:41 +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
2018-05-31 06:57:21 +00:00
LIBS := kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib
2019-07-15 04:11:27 +00:00
HAVE_CDROM = 1
2017-12-18 08:32:41 +00:00
else ifneq (,$(findstring uwp,$(PlatformSuffix)))
WinPartition = uwp
2020-01-07 23:59:56 +00:00
MSVC2017CompileFlags = -DWINAPI_FAMILY=WINAPI_FAMILY_APP -D_WINDLL -D_UNICODE -DUNICODE -D__WRL_NO_DEFAULT_LIB__ -FS
MSVC2017CxxFlags = -EHsc -ZW
LDFLAGS += -APPCONTAINER -NXCOMPAT -DYNAMICBASE -MANIFEST:NO -LTCG -OPT:REF -SUBSYSTEM:CONSOLE -OPT:ICF -ERRORREPORT:PROMPT -NOLOGO -TLBID:1 -DEBUG:FULL -WINMD:NO /nodefaultlib:vccorlib /nodefaultlib:msvcrt vccorlib.lib msvcrt.lib
2018-05-31 06:57:21 +00:00
LIBS := WindowsApp.lib
2017-12-18 08:32:41 +00:00
endif
CFLAGS += $(MSVC2017CompileFlags)
2020-01-07 23:59:56 +00:00
CXXFLAGS += $(MSVC2017CompileFlags) $(MSVC2017CxxFlags)
2017-12-18 08:32:41 +00:00
TargetArchMoniker = $(subst $(WinPartition)_,,$(PlatformSuffix))
CC = cl.exe
CXX = cl.exe
LD = link.exe
HAVE_SYS_PARAM = 0
2020-01-07 23:59:56 +00:00
reg_query = $(call filter_out2,$(subst $2,,$(shell reg query "$2" -v "$1")))
2017-12-18 08:32:41 +00:00
fix_path = $(subst $(SPACE),\ ,$(subst \,/,$1))
2020-01-06 23:01:20 +00:00
ProgramFiles86w := $(shell cmd //c "echo %PROGRAMFILES(x86)%")
2017-12-18 08:32:41 +00:00
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)
2020-01-07 23:59:56 +00:00
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),)))
2017-12-18 08:32:41 +00:00
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)
2020-01-07 23:59:56 +00:00
# platform.winmd seems to be platform independent but only lives in the x86 lib directory
VcCompilerToolsStoreReferencesDir := $(shell IFS=$$'\n'; cygpath -w "$(VcCompilerToolsDir)/lib/x86/store/references")
2017-12-18 08:32:41 +00:00
WindowsSDKSharedIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\shared")
WindowsSDKUCRTIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\ucrt")
WindowsSDKUMIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\um")
2020-01-07 23:59:56 +00:00
WindowsSDKWinRTIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\$(WindowsSDKVersion)\winrt")
2017-12-18 08:32:41 +00:00
WindowsSDKUCRTLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\ucrt\$(TargetArchMoniker)")
WindowsSDKUMLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib\$(WindowsSDKVersion)\um\$(TargetArchMoniker)")
2020-01-07 23:59:56 +00:00
WindowsSDKUnionMetadataDir := $(shell cygpath -w "$(WindowsSdkDir)\UnionMetadata\$(WindowsSDKVersion)")
2017-12-18 08:32:41 +00:00
# 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
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 06:57:21 +00:00
ifneq (,$(findstring uwp,$(PlatformSuffix)))
LIB := $(shell IFS=$$'\n'; cygpath -w "$(LIB)/store")
endif
2020-01-07 23:59:56 +00:00
export INCLUDE := $(INCLUDE);$(WindowsSDKSharedIncludeDir);$(WindowsSDKUCRTIncludeDir);$(WindowsSDKUMIncludeDir);$(WindowsSDKWinRTIncludeDir)
2017-12-18 08:32:41 +00:00
export LIB := $(LIB);$(WindowsSDKUCRTLibDir);$(WindowsSDKUMLibDir)
2020-01-07 23:59:56 +00:00
export LIBPATH := $(LIBPATH);$(VcCompilerToolsStoreReferencesDir);$(WindowsSDKUnionMetadataDir)
2017-12-18 08:32:41 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
PSS_STYLE :=2
LDFLAGS += -DLL
2018-12-30 06:25:50 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN -DALIGN_LONG
ifneq (,$(findstring windows_msvc2017_uwp_arm,$(platform)))
#ENDIANNESS_DEFINES += -DALIGN_LONG
endif
2017-09-06 16:59:04 +00:00
# Windows MSVC 2010 x86
else ifeq ($(platform), windows_msvc2010_x86)
CC = cl.exe
CXX = cl.exe
2017-09-07 00:25:35 +00:00
HAVE_SYS_PARAM = 0
2019-07-15 04:11:27 +00:00
HAVE_CDROM = 1
2017-09-07 00:25:35 +00:00
2017-09-06 16:59:04 +00:00
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")
2017-12-24 20:28:02 +00:00
INCLUDE := $(shell IFS=$$'\n'; cygpath -w "$(VS100COMNTOOLS)../../VC/include")
2017-09-06 16:59:04 +00:00
2021-02-09 18:24:38 +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-09-06 16:59:04 +00:00
2021-02-09 18:24:38 +00:00
WindowsSDKIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include")
WindowsSDKGlIncludeDir := $(shell cygpath -w "$(WindowsSdkDir)\Include\gl")
WindowsSDKLibDir := $(shell cygpath -w "$(WindowsSdkDir)\Lib")
INCFLAGS_PLATFORM = -I"$(WindowsSDKIncludeDir)"
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKGlIncludeDir)
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-09-06 16:59:04 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
PSS_STYLE :=2
LDFLAGS += -DLL
LIBS =
# Windows MSVC 2005 x86
else ifeq ($(platform), windows_msvc2005_x86)
CC = cl.exe
CXX = cl.exe
2017-09-07 00:25:35 +00:00
HAVE_SYS_PARAM = 0
2019-07-15 04:11:27 +00:00
HAVE_CDROM = 1
2017-09-07 00:25:35 +00:00
2017-09-06 16:59:04 +00:00
PATH := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../IDE")
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/include")
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS80COMNTOOLS)../../VC/lib")
BIN := $(shell IFS=$$'\n'; cygpath "$(VS80COMNTOOLS)../../VC/bin")
2021-09-25 10:13:40 +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]:\\.*')
2021-02-09 18:24:38 +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")
export INCLUDE := $(INCLUDE);$(WindowsSDKIncludeDir);$(WindowsSDKAtlIncludeDir);$(WindowsSDKCrtIncludeDir);$(WindowsSDKGlIncludeDir);$(WindowsSDKMfcIncludeDir);libretro/libretro-common/include/compat/msvc
export LIB := $(LIB);$(WindowsSDKLibDir)
2017-09-06 16:59:04 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
PSS_STYLE :=2
LDFLAGS += -DLL
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
LIBS =
2017-12-24 22:47:21 +00:00
# Windows MSVC 2003 x86
else ifeq ($(platform), windows_msvc2003_x86)
CC = cl.exe
CXX = cl.exe
PATH := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin"):$(PATH)
PATH := $(PATH):$(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../IDE")
INCLUDE := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/include")
LIB := $(shell IFS=$$'\n'; cygpath -w "$(VS71COMNTOOLS)../../Vc7/lib")
BIN := $(shell IFS=$$'\n'; cygpath "$(VS71COMNTOOLS)../../Vc7/bin")
WindowsSdkDir := $(INETSDK)
export INCLUDE := $(INCLUDE);$(INETSDK)/Include;src/drivers/libretro/msvc/msvc-2005
export LIB := $(LIB);$(WindowsSdkDir);$(INETSDK)/Lib
TARGET := $(TARGET_NAME)_libretro.dll
PSS_STYLE :=2
LDFLAGS += -DLL
HAVE_SYS_PARAM = 0
CFLAGS += -D_CRT_SECURE_NO_DEPRECATE
2017-12-24 22:51:44 +00:00
LIBS =
2017-12-24 22:47:21 +00:00
2014-11-15 22:08:58 +00:00
# Windows
2012-07-09 21:14:35 +00:00
else
2017-04-20 03:20:26 +00:00
TARGET := $(TARGET_NAME)_libretro.dll
2019-06-04 14:38:08 +00:00
CC ?= gcc
CXX ?= g++
2017-09-06 16:59:04 +00:00
SHARED := -shared -static-libgcc -static-libstdc++ -Wl,--version-script=$(CORE_DIR)/libretro/link.T -Wl,--no-undefined
2017-04-20 03:20:26 +00:00
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
PLATFORM_DEFINES := -DHAVE_ZLIB -DENABLE_SUB_68K_ADDRESS_ERROR_EXCEPTIONS
HAVE_CDROM = 1
MAX_ROM_SIZE = 33554432
2012-07-09 21:14:35 +00:00
endif
ifeq ($(SHARED_LIBVORBIS), 1)
LDFLAGS += -lvorbisfile
endif
2015-03-02 16:37:39 +00:00
2012-07-09 21:14:35 +00:00
ifeq ($(DEBUG), 1)
2017-09-16 04:47:16 +00:00
ifneq (,$(findstring msvc,$(platform)))
2021-02-14 18:23:47 +00:00
CFLAGS += -MTd
2017-09-16 04:47:16 +00:00
CXXFLAGS += -MTd
2021-02-14 18:23:47 +00:00
CFLAGS += -Od -Zi -D_DEBUG
CXXFLAGS += -Od -Zi -D_DEBUG
else
2021-02-14 18:23:47 +00:00
CFLAGS += -O0 -g
CXXFLAGS += -O0 -g
2017-09-16 04:47:16 +00:00
endif
2021-02-14 18:23:47 +00:00
CFLAGS += -DDEBUG
CXXFLAGS += -DDEBUG
2017-09-16 04:47:16 +00:00
else
ifneq (,$(findstring msvc,$(platform)))
2021-02-14 18:23:47 +00:00
CFLAGS += -MT
CXXFLAGS += -MT
2017-09-16 04:47:16 +00:00
endif
2023-07-04 23:49:11 +00:00
ifeq ($(platform), emscripten)
CFLAGS += -O3 -DNDEBUG
CXXFLAGS += -O3 -DNDEBUG
else
2021-02-14 18:23:47 +00:00
CFLAGS += -O2 -DNDEBUG
CXXFLAGS += -O2 -DNDEBUG
endif
2023-07-04 23:49:11 +00:00
endif
ifeq ($(SHARED_LIBVORBIS),)
TREMOR_SRC_DIR := $(CORE_DIR)/core/tremor
endif
2014-11-28 11:09:43 +00:00
2017-09-06 16:59:04 +00:00
include $(CORE_DIR)/libretro/Makefile.common
2012-07-09 21:14:35 +00:00
OBJECTS := $(SOURCES_C:.c=.o) $(SOURCES_CXX:.cpp=.o)
2012-07-09 21:14:35 +00:00
2012-07-10 17:15:26 +00:00
ifeq ($(LOGSOUND), 1)
2017-04-20 03:20:26 +00:00
LIBRETRO_CFLAGS := -DLOGSOUND
2012-07-10 17:15:26 +00:00
endif
ifeq ($(SHARED_LIBVORBIS), 1)
DEFINES := -DUSE_LIBVORBIS
else
DEFINES := -DUSE_LIBTREMOR
endif
ifeq ($(HAVE_CHD), 1)
2021-03-24 14:49:18 +00:00
DEFINES += -DUSE_LIBCHDR -D_7ZIP_ST -DUSE_LIBRETRO_VFS
endif
ifeq ($(USE_PER_SOUND_CHANNELS_CONFIG), 1)
DEFINES += -DUSE_PER_SOUND_CHANNELS_CONFIG
endif
ifeq ($(LOW_MEMORY), 1)
DEFINES += -DLOW_MEMORY
endif
2017-09-06 16:59:04 +00:00
CFLAGS += $(fpic) $(DEFINES) $(CODE_DEFINES) $(FLAGS)
CXXFLAGS += $(fpic) $(DEFINES) $(CODE_DEFINES) $(FLAGS)
2012-07-09 21:14:35 +00:00
ifeq ($(FRONTEND_SUPPORTS_RGB565), 1)
2017-04-20 03:20:26 +00:00
# if you have a new frontend that supports RGB565
BPP_DEFINES = -DUSE_16BPP_RENDERING -DFRONTEND_SUPPORTS_RGB565
else
2017-04-20 03:20:26 +00:00
BPP_DEFINES = -DUSE_15BPP_RENDERING
endif
2019-06-30 05:21:59 +00:00
ifeq ($(HAVE_CDROM), 1)
LIBRETRO_CFLAGS += -DHAVE_CDROM
ifeq ($(CDROM_DEBUG), 1)
LIBRETRO_CFLAGS += -DCDROM_DEBUG
endif
endif
2017-09-06 16:59:04 +00:00
LIBRETRO_CFLAGS += $(INCFLAGS) $(INCFLAGS_PLATFORM)
LIBRETRO_CFLAGS += $(BPP_DEFINES) \
$(ENDIANNESS_DEFINES) \
$(PLATFORM_DEFINES) \
-D__LIBRETRO__ \
-DM68K_OVERCLOCK_SHIFT=20 \
-DZ80_OVERCLOCK_SHIFT=20 \
2019-12-22 09:05:15 +00:00
-DHAVE_YM3438_CORE \
-DHAVE_OPLL_CORE \
-DMAXROMSIZE=$(MAX_ROM_SIZE)
2012-07-09 21:14:35 +00:00
ifneq (,$(findstring msvc,$(platform)))
LIBRETRO_CFLAGS += -DINLINE="static _inline"
else
LIBRETRO_CFLAGS += -DINLINE="static inline"
endif
2017-09-06 16:59:04 +00:00
OBJOUT = -o
LINKOUT = -o
ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo
LINKOUT = -out:
2017-09-16 04:47:16 +00:00
ifeq ($(STATIC_LINKING),1)
LD ?= lib.exe
STATIC_LINKING=0
else
2017-09-06 16:59:04 +00:00
LD = link.exe
2017-09-16 04:47:16 +00:00
endif
2017-09-06 16:59:04 +00:00
else
ifneq (,$(findstring uwp,$(PlatformSuffix)))
LD = $(CXX)
else
LD = $(CC)
endif
2017-09-06 16:59:04 +00:00
endif
2014-12-23 07:39:51 +00:00
ifeq ($(platform), theos_ios)
COMMON_FLAGS := $(COMMON_DEFINES) $(INCFLAGS) -I$(THEOS_INCLUDE_PATH) -Wno-error
$(LIBRARY_NAME)_CFLAGS += $(CFLAGS) $(LIBRETRO_CFLAGS) $(COMMON_FLAGS)
${LIBRARY_NAME}_FILES = $(SOURCES_C) $(SOURCES_CXX)
2014-12-23 07:39:51 +00:00
${LIBRARY_NAME}_LIBRARIES = m z
include $(THEOS_MAKE_PATH)/library.mk
else
2012-07-09 21:14:35 +00:00
all: $(TARGET)
%.o: %.cpp
$(CXX) $(OBJOUT)$@ -c $< $(CXXFLAGS) $(LIBRETRO_CFLAGS)
2012-07-09 21:14:35 +00:00
%.o: %.c
$(CC) $(OBJOUT)$@ -c $< $(CFLAGS) $(LIBRETRO_CFLAGS)
2012-07-09 21:14:35 +00:00
$(TARGET): $(OBJECTS)
2013-05-18 15:49:57 +00:00
ifeq ($(STATIC_LINKING), 1)
$(AR) rcs $@ $(OBJECTS)
2012-07-09 21:14:35 +00:00
else
2017-09-06 16:59:04 +00:00
$(LD) $(LINKOUT)$(TARGET) $(fpic) $(OBJECTS) $(LDFLAGS) $(SHARED) $(LIBS)
2012-07-09 21:14:35 +00:00
endif
2018-10-31 18:18:13 +00:00
2012-08-22 23:37:24 +00:00
clean-objs:
rm -f $(OBJECTS)
2012-08-22 23:37:24 +00:00
2012-07-09 21:14:35 +00:00
clean:
rm -f $(OBJECTS)
2012-07-09 21:14:35 +00:00
rm -f $(TARGET)
2012-08-22 23:37:24 +00:00
.PHONY: clean clean-objs
2014-12-23 07:39:51 +00:00
endif
2017-12-24 20:28:02 +00:00
print-%:
@echo '$*=$($*)'