From a094ed225b686f740a5ec5422e0496e437d3c353 Mon Sep 17 00:00:00 2001 From: lizzie Date: Thu, 30 Apr 2026 15:50:44 +0000 Subject: [PATCH] make fiber bigger, build.sh --- .ci/ps4/build.sh | 1 + externals/cpmfile.json | 1 - src/common/fiber.cpp | 2 +- src/yuzu_cmd/yuzu.cpp | 2 ++ 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.ci/ps4/build.sh b/.ci/ps4/build.sh index db182f3aa4..0536ca34bb 100755 --- a/.ci/ps4/build.sh +++ b/.ci/ps4/build.sh @@ -63,6 +63,7 @@ cmake -S . -B build -G "Unix Makefiles" \ -DYUZU_TESTS=OFF \ -DYUZU_USE_EXTERNAL_SDL2=ON \ "${EXTRA_CMAKE_FLAGS[@]}" || exit + cmake --build build -t yuzu-cmd_pkg -- -j$NPROC #cmake --build build -t dynarmic_tests_pkg -- -j$NPROC #cmake --build build -t testps4_pkg -- -j$NPROC diff --git a/externals/cpmfile.json b/externals/cpmfile.json index adb1f0ef39..d74ad64bd3 100644 --- a/externals/cpmfile.json +++ b/externals/cpmfile.json @@ -38,7 +38,6 @@ ], "options": [ "HTTPLIB_REQUIRE_OPENSSL OFF", - "HTTPLIB_DISABLE_MACOSX_AUTOMATIC_ROOT_CERTIFICATES ON", "HTTPLIB_USE_OPENSSL_IF_AVAILABLE OFF" ] }, diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index 4f3dad7e88..ef635aa307 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -16,7 +16,7 @@ namespace Common { #ifdef __OPENORBIS__ -constexpr size_t DEFAULT_STACK_SIZE = 32 * 4096; +constexpr size_t DEFAULT_STACK_SIZE = 64 * 4096; #else constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096; #endif diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 3acc1037d7..b6c7984d61 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -365,6 +365,8 @@ int main(int argc, char** argv) { // Apply the command line arguments system.ApplySettings(); + Settings::values.renderer_backend.SetValue(Settings::RendererBackend::Null); + Common::Log::SetGlobalFilter(Common::Log::Filter(Common::Log::Level::Trace)); std::unique_ptr emu_window; switch (Settings::values.renderer_backend.GetValue()) {