Personal tools

Difference between revisions of "Editbin"

From MohidWiki

Jump to: navigation, search
 
Line 1: Line 1:
 
[[Editbin]] is a little utility provided with Visual Studio 2008 (paid) or [http://www.microsoft.com/express/Downloads/ Visual C++ 2010 Express (free)] that allows to set some link-time parameters such as HEAP and [[Stacksize|STACKSIZE]].
 
[[Editbin]] is a little utility provided with Visual Studio 2008 (paid) or [http://www.microsoft.com/express/Downloads/ Visual C++ 2010 Express (free)] that allows to set some link-time parameters such as HEAP and [[Stacksize|STACKSIZE]].
  
  > editbin /STACKSIZE:64000000 MohidWater_x64_double_openmp.exe
+
  > editbin /STACK:64000000 MohidWater_x64_double_openmp.exe
 
This will set the Stack reserve size of ''MohidWater_x64_double_openmp.exe'' to roughly 64M.
 
This will set the Stack reserve size of ''MohidWater_x64_double_openmp.exe'' to roughly 64M.
  

Latest revision as of 17:09, 26 January 2012

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 /STACK: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.

Install

Download and install the Visual Studio C++ Express

See also