ld 脚本中节定义末尾的=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚发现节定义末尾的 =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.