DevC++ (Mingw) 堆栈限制

发布于 2024-07-20 05:36:19 字数 54 浏览 11 评论 0原文

DevC++ 中可以设置堆栈限制吗? 基本上与 Linux 上的“ulimit -s”相同。

Is it possible to set the stack limit in DevC++? Basically the same as "ulimit -s" would do on linux.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩耳倾听 2024-07-27 05:36:19

尝试将此选项提供给 ld (链接器):

--stack 保留
--stack 保留、提交
指定要保留(并可选择提交)用作该程序堆栈的内存字节数。 默认为保留 2Mb,提交 4K。 [此选项特定于链接器的 i386 PE 目标端口]

http:// /sourceware.org/binutils/docs/ld/Options.html#Options

Try giving this option to ld (the linker):

--stack reserve
--stack reserve,commit
Specify the number of bytes of memory to reserve (and optionally commit) to be used as stack for this program. The default is 2Mb reserved, 4K committed. [This option is specific to the i386 PE targeted port of the linker]

http://sourceware.org/binutils/docs/ld/Options.html#Options

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文