mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
Merge branch 'master' of https://github.com/ekeeke/Genesis-Plus-GX
This commit is contained in:
commit
9c3914009c
@ -56,6 +56,27 @@ ifneq (,$(findstring unix,$(platform)))
|
||||
ENDIANNESS_DEFINES := -DLSB_FIRST -DBYTE_ORDER=LITTLE_ENDIAN
|
||||
PLATFORM_DEFINES := -DHAVE_ZLIB
|
||||
|
||||
# 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
|
||||
|
||||
# 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
|
||||
|
||||
# Raspberry Pi
|
||||
ifneq (,$(findstring rpi,$(platform)))
|
||||
ENDIANNESS_DEFINES += -DALIGN_LONG
|
||||
|
Loading…
Reference in New Issue
Block a user