从数据段指向文本段的指针
是否可以在 x86-64 中使用此相对寻址执行以下操作?
section .text
two
dq 0
section .data
one:
dq two
当我在 OS X 上使用 nasm 执行此操作时,我收到以下链接器警告:
ld:警告:PIE 已禁用。绝对寻址(也许 -mdynamic-no-pic) 不允许在代码签名的 PIE 中使用,但在 一份来自 /var/tmp/tmp.1.Ho4qKA。要修复此警告,请不要 使用 -mdynamic-no-pic 编译或使用 -Wl,-no_pie 链接
Is it possible to do the following with this relative addressing in x86-64?
section .text
two
dq 0
section .data
one:
dq two
When I do it this way on OS X with nasm, I get the following linker warning:
ld: warning: PIE disabled. Absolute addressing (perhaps
-mdynamic-no-pic) not allowed in code signed PIE, but used in
one from /var/tmp/tmp.1.Ho4qKA. To fix this warning, don't
compile with -mdynamic-no-pic or link with -Wl,-no_pie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
按照警告的指示去做。启用 PIE(位置无关可执行文件),这意味着 .text 可以按照系统的喜好在内存中重新定位,而无需修改代码。链接器会自动检测到这一点并为您禁用它,因此重定位将照常发生,从而允许您使用恒定地址。
Do what the warning says. PIE (position independent executable) is enabled, meaning that .text may be relocated in memory however the system likes, without modifying the code at all. The linker automatically detected this and disabled it for you, so relocations will happen as usual, allowing your constant addresses.