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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ if(LIBRETRO)
# Xbox remove dependency on Zlib
set(USE_SYSTEM_ZLIB OFF CACHE BOOL "" FORCE)
endif()
if(CMAKE_CXX_COMPILER MATCHES "arm-webos-linux-gnueabi-")
if(CMAKE_CXX_COMPILER MATCHES ".*(arm-webos-linux-gnueabi-|aarch64-webos-linux-gnu).*")
set(WEBOS TRUE CACHE BOOL "Building for webOS")
add_definitions(-D__WEBOS__)
set(ENABLE_VULKAN OFF CACHE BOOL "" FORCE)
Expand Down
4 changes: 4 additions & 0 deletions Source/Core/DolphinLibretro/Common/Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@ static struct retro_core_option_v2_definition option_defs[] = {
{ "enabled", nullptr },
{ nullptr, nullptr }
},
#ifdef __WEBOS__
"disabled"
#else
"enabled"
#endif
},
{
Libretro::Options::core::MAIN_ACCURATE_CPU_CACHE,
Expand Down
Loading