From: Jan Beulich Date: Tue, 7 Jun 2022 12:07:11 +0000 (+0200) Subject: build: silence GNU ld warning about executable stacks X-Git-Tag: archive/raspbian/4.16.2-1+rpi1^2~34^2~61 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=1bc669a568a9f4bdab9e9ddb95823ba370dc0baf;p=xen.git build: silence GNU ld warning about executable stacks While for C files the compiler is supposed to arrange for emitting respective information, for assembly sources we're responsible ourselves. Present GNU ld master started warning about such, and hence 2.39 is anticipated to have this warning. Signed-off-by: Jan Beulich Acked-by: Andrew Cooper Acked-by: Julien Grall master commit: 62d22296a95d259c934ca2f39ac511d729cfbb68 master date: 2022-05-18 11:18:45 +0200 --- diff --git a/xen/Makefile b/xen/Makefile index 4d9abe7046..971028eda2 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -260,6 +260,8 @@ endif AFLAGS += -D__ASSEMBLY__ +$(call cc-option-add,AFLAGS,CC,-Wa$(comma)--noexecstack) + LDFLAGS-$(call ld-option,--warn-rwx-segments) += --no-warn-rwx-segments CFLAGS += $(CFLAGS-y)