Makefile: supress warning about executable stack from ld 2.39

* `missing .note.GNU-stack section implies executable stack`
This commit is contained in:
Zihao Yu 2022-11-09 16:13:32 +08:00
parent 7c9b27be20
commit 024441cbed
2 changed files with 2 additions and 1 deletions

View file

@ -87,6 +87,7 @@ CFLAGS += -O2 -MMD -Wall -Werror $(INCFLAGS) \
-Wno-main -U_FORTIFY_SOURCE
CXXFLAGS += $(CFLAGS) -ffreestanding -fno-rtti -fno-exceptions
ASFLAGS += -MMD $(INCFLAGS)
LDFLAGS += -z noexecstack
## 4. Arch-Specific Configurations

View file

@ -16,7 +16,7 @@ ASFLAGS += -fpie -pie
image:
@echo + LD "->" $(IMAGE_REL)
@g++ -pie -o $(IMAGE) -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive -lSDL2 -ldl
@g++ -pie -o $(IMAGE) -Wl,--whole-archive $(LINKAGE) -Wl,-no-whole-archive -Wl,-z -Wl,noexecstack -lSDL2 -ldl
run: image
$(IMAGE)