chibios: disable RWX segment warning on newer GNU lds (#22471)
This commit is contained in:
parent
4c625d8286
commit
02d3b233ab
1 changed files with 5 additions and 0 deletions
|
@ -476,6 +476,11 @@ HEX = $(OBJCOPY) -O $(FORMAT)
|
|||
EEP =
|
||||
BIN = $(OBJCOPY) -O binary
|
||||
|
||||
# disable warning about RWX triggered by ChibiOS linker scripts
|
||||
ifeq ("$(shell echo "int main(){}" | $(CC) -shared -Wl,--no-warn-rwx-segments -x c - -o /dev/null 2>&1)", "")
|
||||
SHARED_LDFLAGS += -Wl,--no-warn-rwx-segments
|
||||
endif
|
||||
|
||||
##############################################################################
|
||||
# Make targets
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue