ld 脚本中节定义末尾的=0 是什么意思?

发布于 2024-10-12 00:01:29 字数 123 浏览 2 评论 0原文

我刚刚看到最后有 =0 的节定义,即

.init : 
  { 
    KEEP (*(.init))
  } =0

最后的 =0 意味着什么以及它的意义是什么?

I just saw a section definition with =0 at the end i.e

.init : 
  { 
    KEEP (*(.init))
  } =0

What does that =0 at the end means and what is its significance?

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

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

发布评论

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

评论(1

芸娘子的小脾气 2024-10-19 00:01:29

我刚刚发现节定义末尾的 =0 指定了填充表达式,即该节中任何未使用的内存都将填充值 0,并根据需要重复。这种未使用内存的一个例子是由于输入部分的对齐要求而留下的间隙。这个初始化不一定是0,我们可以使用任何数字或有效的LD表达式来填充未使用的内存。

I just found out that =0 at the end of the section definition specifies the fill expression i.e any unused memory within this section will be filled with the value 0, repeated as necessary. An example of such unused memory is gaps left due to alignment requirements of input sections. This initialization doesn't have to be 0, we can use any number or valid LD expression to fill the unused memory.

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