fix: ssp is now enabled and it no longer crashes with several prints (so far)
This commit is contained in:
6
Makefile
6
Makefile
@ -3,7 +3,7 @@ NAME := bozOS
|
||||
AS := i386-elf-as
|
||||
ASFLAGS :=
|
||||
CC := i386-elf-gcc
|
||||
CFLAGS := -std=gnu99 -ffreestanding -Wall -Wextra -iquotelibbozo/headers -iquoteheaders -MMD -fno-omit-frame-pointer -g
|
||||
CFLAGS := -std=gnu99 -ffreestanding -Wall -Wextra -iquotelibbozo/headers -iquoteheaders -MMD -fno-omit-frame-pointer -fstack-protector-all -g
|
||||
LD := $(CC)
|
||||
LDFLAGS := -T boot/linker.ld -ffreestanding -nostdlib
|
||||
LIBS := -L libbozo/build/ -lbozo -lgcc
|
||||
@ -55,7 +55,9 @@ fclean: clean
|
||||
make -C libbozo fclean
|
||||
rm -rf build
|
||||
|
||||
re: fclean all
|
||||
re:
|
||||
$(MAKE) fclean
|
||||
$(MAKE) all
|
||||
|
||||
.PHONY: all clean fclean re run iso run-iso
|
||||
-include $(DEP)
|
||||
|
Reference in New Issue
Block a user