从数据段指向文本段的指针

发布于 2024-12-02 23:55:59 字数 345 浏览 0 评论 0原文

是否可以在 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 技术交流群。

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

发布评论

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

评论(1

哭了丶谁疼 2024-12-09 23:55:59

按照警告的指示去做。启用 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.

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