Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ include:
file: '/linux-aarch64.yml'

#################################### MISC ##################################

# webOS 32-bit (LGTV)
- project: 'libretro-infrastructure/ci-templates'
file: '/webos-make.yml'

# Stages for building
stages:
- build-prepare
Expand Down Expand Up @@ -85,3 +88,10 @@ libretro-build-linux-aarch64-cdi2015:
extends:
- .libretro-linux-aarch64-make-default
- .core-defs-cdi2015

#################################### MISC ##################################
# webOS 32-bit
libretro-build-webos-armv7a:
extends:
- .libretro-webos-armv7a-make-default
- .core-defs
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,15 @@ else

endif

# webOS (32-bit)
ifneq (,$(or $(findstring webos,$(CROSS_COMPILE)),$(findstring starfish,$(CROSS_COMPILE))))
FORCE_DRC_C_BACKEND = 1
PTR64 = 0
PLATCFLAGS += -DSDLMAME_NO64BITIO -DSDLMAME_ARM -DRETRO_SETJMP_HACK -DARM
NOASM = 1
REALCC = $(CC)
endif

###########################################################################
################# BEGIN USER-CONFIGURABLE OPTIONS #####################
###########################################################################
Expand Down