From ea05798d3dd65a96cd5be620ca4ad4facfc99bd5 Mon Sep 17 00:00:00 2001 From: qurious-pixel <62252937+qurious-pixel@users.noreply.github.com> Date: Sat, 21 Oct 2023 15:17:17 -0700 Subject: [PATCH] -O0 --- rpcsx-os/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcsx-os/CMakeLists.txt b/rpcsx-os/CMakeLists.txt index 34552006..e015352d 100644 --- a/rpcsx-os/CMakeLists.txt +++ b/rpcsx-os/CMakeLists.txt @@ -38,7 +38,7 @@ add_executable(rpcsx-os target_include_directories(rpcsx-os PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(rpcsx-os PUBLIC orbis::kernel amdgpu::bridge rx libcrypto unwind unwind-x86_64 xbyak) target_link_options(rpcsx-os PUBLIC "LINKER:-Ttext-segment,0x0000000010000000") -target_compile_options(rpcsx-os PRIVATE "") +target_compile_options(rpcsx-os PRIVATE "-O0") set_target_properties(rpcsx-os PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) install(TARGETS rpcsx-os RUNTIME DESTINATION bin)