Personal tools

Editbin

From MohidWiki

Revision as of 18:32, 17 March 2011 by Guillaume (talk | contribs) (New page: Editbin is a little utility provided with Visual Studio 2008 (paid) or Visual C++ 2010 Express (free) that allows to set some link-time parameters such as HEAP and [[Stacksize|STACKSIZ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Editbin is a little utility provided with Visual Studio 2008 (paid) or Visual C++ 2010 Express (free) that allows to set some link-time parameters such as HEAP and STACKSIZE.

> editbin /STACKSIZE:64000000 MohidWater_x64_double_openmp.exe

This will set the Stack reserve size of MohidWater_x64_double_openmp.exe to roughly 64M.

> editbin /HEAP:128000 MohidWater_x64_double_openmp.exe

This will set the heap reserve size of MohidWater_x64_double_openmp.exe to roughly 128K.

See also