mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-02 08:12:42 -06:00
ide: MSC 32-bit STACK parameter reduced to 10MB (because it sets thread address space as well)
git-svn-id: svn://ultimatepp.org/upp/trunk@10335 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
a69e7237da
commit
16f0b497e1
1 changed files with 2 additions and 2 deletions
|
|
@ -239,12 +239,12 @@ void InstantSetup()
|
|||
bmSet(bm, "DEBUG_LINKMODE", "0");
|
||||
bmSet(bm, "DEBUG_OPTIONS", "-Od");
|
||||
bmSet(bm, "DEBUG_FLAGS", "");
|
||||
bmSet(bm, "DEBUG_LINK", "/STACK:20000000");
|
||||
bmSet(bm, "DEBUG_LINK", x64 ? "/STACK:20000000" : "/STACK:10000000");
|
||||
bmSet(bm, "RELEASE_BLITZ", "0");
|
||||
bmSet(bm, "RELEASE_LINKMODE", "0");
|
||||
bmSet(bm, "RELEASE_OPTIONS", "-O2");
|
||||
bmSet(bm, "RELEASE_FLAGS", "");
|
||||
bmSet(bm, "RELEASE_LINK", "/STACK:20000000");
|
||||
bmSet(bm, "RELEASE_LINK", x64 ? "/STACK:20000000" : "/STACK:10000000");
|
||||
bmSet(bm, "DISABLE_BLITZ", "");
|
||||
bmSet(bm, "DEBUGGER", GetFileFolder(vc) + "/Common7/IDE/devenv.exe");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue