diff options
author | Brad King <brad.king@kitware.com> | 2013-02-15 18:11:54 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-02-15 18:11:54 (GMT) |
commit | 3a393cb2da1b744598da23bc01592a910c728c18 (patch) | |
tree | a763fc1eff5feb3f9e88ad4607cf7b9f605224d9 /Modules | |
parent | c1dc80749440febf41c24329e0276e733a7220f2 (diff) | |
parent | 188b0e9e37d6f47b65c60d81a2b07206b3d5488b (diff) | |
download | CMake-3a393cb2da1b744598da23bc01592a910c728c18.zip CMake-3a393cb2da1b744598da23bc01592a910c728c18.tar.gz CMake-3a393cb2da1b744598da23bc01592a910c728c18.tar.bz2 |
Merge topic 'Embarcadero-linker-flags'
188b0e9 Embarcadero: Fix default link stack/heap flags (#13912)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Platform/Windows-Embarcadero.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-Embarcadero.cmake b/Modules/Platform/Windows-Embarcadero.cmake index 1662ac9..307230e 100644 --- a/Modules/Platform/Windows-Embarcadero.cmake +++ b/Modules/Platform/Windows-Embarcadero.cmake @@ -64,7 +64,7 @@ set(CMAKE_CREATE_CONSOLE_EXE "${_tC}" ) set (CMAKE_BUILD_TYPE Debug CACHE STRING "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel.") -set (CMAKE_EXE_LINKER_FLAGS_INIT "${_tM} -lS:10000000 -lSc:10000000 ") +set (CMAKE_EXE_LINKER_FLAGS_INIT "${_tM} -lS:1048576 -lSc:4098 -lH:1048576 -lHc:8192 ") set (CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT "-v") set (CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT "-v") set (CMAKE_SHARED_LINKER_FLAGS_INIT ${CMAKE_EXE_LINKER_FLAGS_INIT}) |