build: create copy of kernel binary with debug symbols

This commit is contained in:
2023-02-08 20:22:54 +00:00
parent e96da32cd5
commit 18c5b34923
5 changed files with 8 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
LD := $(ARCH)-elf-gcc
CC := $(ARCH)-elf-gcc
ASM := $(ARCH)-elf-gcc
OBJCOPY := $(ARCH)-elf-objcopy
STRIP := $(ARCH)-elf-strip
CFLAGS := -ffreestanding -nostdlib
ASMFLAGS := $(CFLAGS)