mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-30 00:09:00 +02:00
use newer sdl2, make bigger stack
This commit is contained in:
parent
30dd3fa1f3
commit
a9845aa570
3 changed files with 8 additions and 7 deletions
9
externals/cpmfile.json
vendored
9
externals/cpmfile.json
vendored
|
|
@ -192,11 +192,14 @@
|
||||||
},
|
},
|
||||||
"sdl2_ps4": {
|
"sdl2_ps4": {
|
||||||
"package": "SDL2",
|
"package": "SDL2",
|
||||||
"repo": "xinitrcn1/SDL",
|
"repo": "libsdl-org/SDL",
|
||||||
"sha": "f577141fc4",
|
"sha": "0c7042477a",
|
||||||
"key": "ps4",
|
"key": "ps4",
|
||||||
"bundled": true,
|
"bundled": true,
|
||||||
"skip_updates": true
|
"skip_updates": true,
|
||||||
|
"patches": [
|
||||||
|
"0001-ps4.patch"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"moltenvk": {
|
"moltenvk": {
|
||||||
"repo": "V380-Ori/Ryujinx.MoltenVK",
|
"repo": "V380-Ori/Ryujinx.MoltenVK",
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
#ifdef __OPENORBIS__
|
#ifdef __OPENORBIS__
|
||||||
constexpr size_t DEFAULT_STACK_SIZE = 128 * 4096;
|
constexpr size_t DEFAULT_STACK_SIZE = 256 * 4096;
|
||||||
#else
|
#else
|
||||||
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -39,9 +39,7 @@ target_link_libraries(yuzu-cmd PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads)
|
||||||
|
|
||||||
create_resource("../../dist/eden.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
|
create_resource("../../dist/eden.bmp" "yuzu_cmd/yuzu_icon.h" "yuzu_icon")
|
||||||
target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})
|
target_include_directories(yuzu-cmd PRIVATE ${RESOURCES_DIR})
|
||||||
|
target_link_libraries(yuzu-cmd PRIVATE SDL2::SDL2)
|
||||||
target_include_directories(yuzu-cmd PRIVATE ${CMAKE_SYSROOT}/include/SDL2)
|
|
||||||
target_link_libraries(yuzu-cmd PRIVATE SDL2)
|
|
||||||
|
|
||||||
if(UNIX AND NOT APPLE)
|
if(UNIX AND NOT APPLE)
|
||||||
install(TARGETS yuzu-cmd)
|
install(TARGETS yuzu-cmd)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue