Update userspace

This commit is contained in:
Alex
2023-10-09 01:25:55 +03:00
parent 883d2e3481
commit 17787dbc9b
17 changed files with 111 additions and 196 deletions

View File

@ -39,7 +39,7 @@ CFLAGS = -I$(WORKSPACE)out/include \
WARNCFLAG = -Wall -Wextra
ifneq ($(OSARCH), aarch64)
CFLAGS += -fstack-protector-all -fstack-clash-protection
# CFLAGS += -fstack-protector-all -fstack-clash-protection
endif
ifeq ($(DEBUG), 1)
@ -52,7 +52,7 @@ build: $(FILENAME)
$(FILENAME): $(OBJ)
$(info Linking $@)
$(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -lssp -o $@
$(CC) $(LDFLAGS) $(SYSROOT) $(OBJ) -o $@
%.o: %.c $(HEADERS)
$(info Compiling $<)