Difference between revisions of "Editbin"
From MohidWiki
(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...) |
|||
Line 1: | Line 1: | ||
− | [[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|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 /STACKSIZE:64000000 MohidWater_x64_double_openmp.exe | ||
Line 6: | Line 6: | ||
> editbin /HEAP:128000 MohidWater_x64_double_openmp.exe | > editbin /HEAP:128000 MohidWater_x64_double_openmp.exe | ||
This will set the heap reserve size of ''MohidWater_x64_double_openmp.exe'' to roughly 128K. | This will set the heap reserve size of ''MohidWater_x64_double_openmp.exe'' to roughly 128K. | ||
+ | |||
+ | ==Install== | ||
+ | Download and install the [http://www.microsoft.com/express/Downloads/ Visual Studio C++ Express] | ||
==See also== | ==See also== |
Revision as of 11:14, 1 April 2011
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.
Install
Download and install the Visual Studio C++ Express