我正在写一个操作系统。我目前无法将C代码编译成输出文件,然后进一步与ld链接
当我运行我的make文件时,这个错误弹出:
/usr/local/i386elfgcc/bin/i386-elf-gcc -g -ffreestanding -c kernel/kernel.c -o kernel/kernel.o
/usr/local/i386elfgcc/bin/i386-elf-gcc: /usr/local/i386elfgcc/bin/i386-elf-gcc: cannot execute binary file
make: *** [kernel/kernel.o] Error 126
这是生成文件
C_SOURCES = $(wildcard kernel/*.c drivers/*.c)
HEADERS = $(wildcard kernel/*.h drivers/*.h)
# Nice syntax for file extension replacement
OBJ = ${C_SOURCES:.c=.o}
# Change this if your cross-compiler is somewhere else
CC = /usr/local/i386elfgcc/bin/i386-elf-gcc
GDB = /usr/local/i386elfgcc/bin/i386-elf-gdb
LD = /usr/local/i386elfgcc/bin/i386-elf-ld
# -g: Use debugging symbols in gcc
CFLAGS = -g
# First rule is run by default
os-image.bin: boot/boot.bin kernel.bin
cat $^ > os-image.bin
# '--oformat binary' deletes all symbols as a collateral, so we don't need
# to 'strip' them manually on this case
kernel.bin: boot/kernelStart32.o ${OBJ}
${LD} -o $@ -Ttext 0x1000 $^ --oformat binary
# Used for debugging purposes
kernel.elf: boot/boot_32bit_kernel_entry.o ${OBJ}
${LD} -o $@ -Ttext 0x1000 $^
run: os-image.bin
qemu-system-i386 -fda os-image.bin
# Open the connection to qemu and load our kernel-object file with symbols
debug: os-image.bin kernel.elf
qemu-system-i386 -s -fda os-image.bin &
${GDB} -ex "target remote localhost:1234" -ex "symbol-file kernel.elf"
# Generic rules for wildcards
# To make an object, always compile from its .c
%.o: %.c ${HEADERS}
${CC} ${CFLAGS} -ffreestanding -c $< -o $@
%.o: %.asm
nasm $< -f elf -o $@
%.bin: %.asm
nasm $< -f bin -o $@
clean:
rm -rf *.bin *.dis *.o os-image.bin *.elf
rm -rf kernel/*.o boot/*.bin drivers/*.o boot/*.o
我已经建立了GCC等路径:第一个月
我使用的是macOS Monterey 12.4(Intel - x86_64)并安装了所有依赖项
我已经尝试到处寻找这个问题,尝试不同的标志和一切,但问题仍然存在
1条答案
按热度按时间zzlelutf1#
这意味着你构建的编译器不能在你运行它的系统上运行。你必须决定你是否要做 * 本机编译 *,在这种情况下,你要构建一个在目标上 * 运行 * 的编译器,同时也为目标 * 生成输出 *。这就是你通常使用的编译器总是如何工作的。
如果您创建了这种编译器,那么您必须在 target 上运行
make
,因为这是您构建编译器运行的地方。或者,您可以创建一个交叉编译器。交叉编译器在您的 * 本地 * 系统上运行,但生成在 * 目标 * 系统上运行的输出。
在您的情况下,如果您希望在MacOS系统上编译代码,但生成在不同系统上运行的二进制文件,则需要交叉编译器。