mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 18:28:54 +02:00
stub add proper iostream init
This commit is contained in:
parent
99365e445e
commit
2b541d0f05
3 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/local/bin/bash -ex
|
||||
|
||||
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||||
# SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
[ -f "ps4-toolchain.cmake" ] || cat << EOF >"ps4-toolchain.cmake"
|
||||
|
|
|
|||
4
externals/ps4sup/stub.cpp
vendored
4
externals/ps4sup/stub.cpp
vendored
|
|
@ -19,3 +19,7 @@ STUB_WEAK(ZSTD_trace_decompress_end)
|
|||
FILE* __stderrp = stdout;
|
||||
|
||||
#undef STUB_WEAK
|
||||
|
||||
// THIS MAKES STD::COUT AND SUCH WORK :)
|
||||
#include <iostream>
|
||||
std::ios_base::Init init;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||||
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
// SPDX-FileCopyrightText: 2017 Citra Emulator Project
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue