mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
build: Disble fixed base for windows-on-arm
This commit is contained in:
parent
4f27af9949
commit
31ce32709e
2 changed files with 6 additions and 3 deletions
|
@ -113,7 +113,10 @@ else()
|
|||
# Increase stack limit to 8 MB
|
||||
add_link_options(-Wl,--stack -Wl,8388608)
|
||||
|
||||
add_link_options(-Wl,--image-base,0x10000)
|
||||
# For arm64 windows, the image base cannot be below 4GB or the OS rejects the binary without much explanation.
|
||||
if(COMPILER_X86)
|
||||
add_link_options(-Wl,--image-base,0x10000)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
# Specify C++ library to use as standard C++ when using clang
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue