mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 01:38:36 +08:00
sim: add link option /LARGEADDRESSAWARE:NO for windows64
Signed-off-by: chenxiaoyi <chenxiaoyi@xiaomi.com>
This commit is contained in:
parent
a23ed77782
commit
21501f65b1
1 changed files with 3 additions and 0 deletions
|
@ -667,6 +667,9 @@ elseif(WIN32)
|
|||
"${CONFIG_SIM_STACKSIZE_ADJUSTMENT} + ${CONFIG_IDLETHREAD_STACKSIZE}"
|
||||
OUTPUT_FORMAT DECIMAL)
|
||||
target_link_options(nuttx PUBLIC /STACK:${LINK_STACKSIZE},${LINK_STACKSIZE})
|
||||
if("${CMAKE_GENERATOR_PLATFORM}" STREQUAL "x64")
|
||||
target_link_options(nuttx PUBLIC /LARGEADDRESSAWARE:NO)
|
||||
endif()
|
||||
set(nuttx_libs_paths)
|
||||
foreach(lib ${nuttx_libs})
|
||||
list(APPEND nuttx_libs_paths $<TARGET_FILE:${lib}>)
|
||||
|
|
Loading…
Reference in a new issue