浏览代码

trusted-firmware-a.mk: fix build with binutils 2.39

Starting from version 2.39 binutils now warns about sections with rwx
permissions. While this is generally desirable it breaks building
ARM TrustedFirmware-A bl2 which treats warnings as errors.
Disable the warning/error for now to fix build.

Signed-off-by: Daniel Golle <[email protected]>
Daniel Golle 2 年之前
父节点
当前提交
0579d9f5bc
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      include/trusted-firmware-a.mk

+ 1 - 0
include/trusted-firmware-a.mk

@@ -81,6 +81,7 @@ define Build/Compile/Trusted-Firmware-A
 		$(if $(DTC),DTC="$(DTC)") \
 		$(if $(DTC),DTC="$(DTC)") \
 		PLAT=$(PLAT) \
 		PLAT=$(PLAT) \
 		BUILD_STRING="OpenWrt v$(PKG_VERSION)-$(PKG_RELEASE) ($(VARIANT))" \
 		BUILD_STRING="OpenWrt v$(PKG_VERSION)-$(PKG_RELEASE) ($(VARIANT))" \
+		$(if $(CONFIG_BINUTILS_VERSION_2_39),LDFLAGS="-no-warn-rwx-segments") \
 		$(TFA_MAKE_FLAGS)
 		$(TFA_MAKE_FLAGS)
 endef
 endef