diff options
author | dzwdz | 2022-05-03 19:02:56 +0200 |
---|---|---|
committer | dzwdz | 2022-05-03 19:02:56 +0200 |
commit | 600dd0bb30d9d8d5c7645156c1c50ad68ec1b334 (patch) | |
tree | 511b10b0f4481ba532a99a8fc822adbb76d9c760 /Makefile | |
parent | 775e4fd747d567916658b2b26e8e3c5eba6b5a54 (diff) |
kernel: stacktraces on panic()
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ PATH := $(shell pwd)/toolchain/bin/:$(PATH) AS = i686-elf-as CC = i686-elf-gcc CHECK = sparse -CFLAGS += -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition -Werror=implicit-function-declaration -ftrack-macro-expansion=0 +CFLAGS += -g -std=gnu99 -ffreestanding -O2 -Wall -Wextra -Wold-style-definition -Werror=implicit-function-declaration -ftrack-macro-expansion=0 CFLAGS += -mgeneral-regs-only CFLAGS += -Isrc/ LFLAGS = -ffreestanding -O2 -nostdlib -lgcc |