gpt4 book ai didi

macos - Mac OS X 中的 NASM Hello World 段错误或总线错误

转载 作者:行者123 更新时间:2023-12-02 05:29:03 26 4
gpt4 key购买 nike

我正在 NASM 中编写 Hello World,我可以让它向控制台回显 Hello World,但如果我不使用 Make 运行它,程序就会出现段错误。

使用 Makefile 进行跟踪:

$ make
nasm -f macho -o hello.o --prefix _ hello.asm
ld -o hello hello.o -arch i386 -lc -macosx_version_min 10.6 -e _start -no_pie
./hello
Hello World!

使用手动命令进行跟踪:

$ nasm -f macho -o hello.o --prefix _ hello.asm
$ ld -o hello hello.o -arch i386 -lc -macosx_version_min 10.6 -e _start -no_pie
$ ./hello
Segmentation fault: 11

你好.asm:

[bits 32]

section .data

msg: db "Hello World!", 0

section .text

global start
extern puts
extern exit

start:

push msg
call puts
add esp, 4

push 0
call exit

生成文件:

# Linux defaults

FORMAT=-f elf
MINV=
ARCH=-arch i386
LIBS=
RUN=./
EXECUTABLE=hello
PREFIX=
ENTRY=
PIE=

# Windows
ifeq (${MSYSTEM},MINGW32)
FORMAT=-f win32
EXECUTABLE=hello.exe
PREFIX=--prefix _
ENTRY=-e _start
ARCH=
LIBS=c:/strawberry/c/i686-w64-mingw32/lib/crt2.o -Lc:/strawberry/c/i686-w64-mingw32/lib -lmingw32 -lmingwex -lmsvcrt -lkernel32
ENTRY=
RUN=
endif

# Mac OS X
ifeq ($(shell uname -s),Darwin)
FORMAT=-f macho
PREFIX=--prefix _
ENTRY=-e _start
LIBS=-lc
MINV=-macosx_version_min 10.6
PIE=-no_pie
endif

all: test

test: $(EXECUTABLE)
$(RUN)$(EXECUTABLE)

$(EXECUTABLE): hello.o
ld -o $(EXECUTABLE) hello.o $(ARCH) $(LIBS) $(MINV) $(ENTRY) $(PIE)

hello.o: hello.asm
nasm $(FORMAT) -o hello.o $(PREFIX) hello.asm

clean:
-rm $(EXECUTABLE)
-rm hello.o

规范:

  • ld 64-134.9
  • LLVM 3.1svn
  • NASM 0.98.40
  • 做3.81
  • Xcode 4.5
  • Mac OS X 10.8.1
  • MacBook Pro 2009

最佳答案

2 件事,你的 hello world 字符串不是 NULL 终止的,正如我在另一篇文章中提到的,当你使用 C 函数时,你必须在每次调用后调整 esp

关于macos - Mac OS X 中的 NASM Hello World 段错误或总线错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12657764/

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