EXE 文件中节和内存的对齐

发布于 2024-08-14 23:01:22 字数 66 浏览 7 评论 0原文

在 Mosa IL 编译器中创建使用时,我需要指定 EXE 文件中的节和内存的对齐方式是什么?

谢谢。

What are the alignment of sections and memory within an EXE file I need to specify when creating using in the Mosa IL compiler?

Thanks.

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

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

发布评论

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

评论(2

晨曦慕雪 2024-08-21 23:01:22

它通常与页面大小相同,大多数 CPU 为 4K。

It's typically the same as the page size, 4K for most CPUs.

月隐月明月朦胧 2024-08-21 23:01:22

PE 文件中的各部分必须在 4k 边界上对齐。

您可以像这样正确地使用 MOSA 编译器:

mosacl.exe -a=x86 -f=PE --pe-file-alignment=4096 --map=hello.map -b=mb0.7 -o hello.exe 

The sections within the PE file must be aligned on 4k boundaries.

You can involve the MOSA compiler properly like this:

mosacl.exe -a=x86 -f=PE --pe-file-alignment=4096 --map=hello.map -b=mb0.7 -o hello.exe 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文