mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-21 20:27:05 +02:00
make fiber bigger, build.sh
This commit is contained in:
parent
1c1b2bf54a
commit
8984f5ccb8
4 changed files with 4 additions and 2 deletions
|
|
@ -63,6 +63,7 @@ cmake -S . -B build -G "Unix Makefiles" \
|
||||||
-DYUZU_TESTS=OFF \
|
-DYUZU_TESTS=OFF \
|
||||||
-DYUZU_USE_EXTERNAL_SDL2=ON \
|
-DYUZU_USE_EXTERNAL_SDL2=ON \
|
||||||
"${EXTRA_CMAKE_FLAGS[@]}" || exit
|
"${EXTRA_CMAKE_FLAGS[@]}" || exit
|
||||||
|
|
||||||
cmake --build build -t yuzu-cmd_pkg -- -j$NPROC
|
cmake --build build -t yuzu-cmd_pkg -- -j$NPROC
|
||||||
#cmake --build build -t dynarmic_tests_pkg -- -j$NPROC
|
#cmake --build build -t dynarmic_tests_pkg -- -j$NPROC
|
||||||
#cmake --build build -t testps4_pkg -- -j$NPROC
|
#cmake --build build -t testps4_pkg -- -j$NPROC
|
||||||
|
|
|
||||||
1
externals/cpmfile.json
vendored
1
externals/cpmfile.json
vendored
|
|
@ -37,7 +37,6 @@
|
||||||
],
|
],
|
||||||
"options": [
|
"options": [
|
||||||
"HTTPLIB_REQUIRE_OPENSSL OFF",
|
"HTTPLIB_REQUIRE_OPENSSL OFF",
|
||||||
"HTTPLIB_DISABLE_MACOSX_AUTOMATIC_ROOT_CERTIFICATES ON",
|
|
||||||
"HTTPLIB_USE_OPENSSL_IF_AVAILABLE OFF"
|
"HTTPLIB_USE_OPENSSL_IF_AVAILABLE OFF"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
namespace Common {
|
namespace Common {
|
||||||
|
|
||||||
#ifdef __OPENORBIS__
|
#ifdef __OPENORBIS__
|
||||||
constexpr size_t DEFAULT_STACK_SIZE = 32 * 4096;
|
constexpr size_t DEFAULT_STACK_SIZE = 64 * 4096;
|
||||||
#else
|
#else
|
||||||
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
|
|
@ -367,6 +367,8 @@ int main(int argc, char** argv) {
|
||||||
|
|
||||||
// Apply the command line arguments
|
// Apply the command line arguments
|
||||||
system.ApplySettings();
|
system.ApplySettings();
|
||||||
|
Settings::values.renderer_backend.SetValue(Settings::RendererBackend::Null);
|
||||||
|
Common::Log::SetGlobalFilter(Common::Log::Filter(Common::Log::Level::Trace));
|
||||||
|
|
||||||
std::unique_ptr<EmuWindow_SDL3> emu_window;
|
std::unique_ptr<EmuWindow_SDL3> emu_window;
|
||||||
switch (Settings::values.renderer_backend.GetValue()) {
|
switch (Settings::values.renderer_backend.GetValue()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue