gpt4 book ai didi

macos - mac os x 链接 nasm 程序

转载 作者:行者123 更新时间:2023-12-04 22:16:52 24 4
gpt4 key购买 nike

我在为 macos 链接 nasm 程序时遇到了一些问题:

GLOBAL _start
SEGMENT .text
_start:
mov ax, 5
mov bx, ax
mov [a], ebx
SEGMENT .data
a DW 0
t2 DW 0

fry$ nasm -f elf test.asm
fry$ ld -o test test.o -arch i386
ld: warning: in test.o, file was built for unsupported file format which is not the architecture being linked (i386)
ld: could not find entry point "start" (perhaps missing crt1.

fry$ nasm -f macho test.asm
fry$ ld -o test test.o -arch i386
ld: could not find entry point "start" (perhaps missing crt1.o)

谁能帮我?

最佳答案

Mac OS X 链接器无法链接 ELF 对象。它仅适用于 Mach-O 可执行格式。除非您想弄清楚如何翻译目标文件,否则您最好编写适用于 Mac OS X 汇编程序的代码。

编辑:正如@Fry 在下面的评论中提到的,您可以制作 nasm放出 Mach-O 物体。在那种情况下,问题很简单 - 以 _ 为例。关闭 _start在源文件的两个地方。结果链接正常。

关于macos - mac os x 链接 nasm 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2908862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com