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...) |
|||
| (One intermediate revision by the same user not shown) | |||
| 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 / | + | > 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. | ||
> 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== | ||
Latest revision as of 16: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