0010-QSDK-config-Avoid-Werror-heroics.patch 1.2 KB

123456789101112131415161718192021222324252627282930
  1. From d70d013ac1090565ebb71875f5bdc70840807428 Mon Sep 17 00:00:00 2001
  2. From: Alexandru Gagniuc <[email protected]>
  3. Date: Fri, 23 Sep 2022 08:21:13 -0500
  4. Subject: [PATCH] QSDK: config: Avoid -Werror heroics
  5. Trying to compile the QSDK with warnings as errors is a very brave
  6. endeavor. It's also stupid as it doesn't work on ipq60xx:
  7. isisc_acl_prv.h:99: error: "FIELD_GET" redefined [-Werror]
  8. 99 | #define FIELD_GET(reg, field, val) \
  9. |
  10. Instead of dealing with the braindead code, just disable Werror.
  11. Signed-off-by: Alexandru Gagniuc <[email protected]>
  12. ---
  13. config | 2 +-
  14. 1 file changed, 1 insertion(+), 1 deletion(-)
  15. --- a/config
  16. +++ b/config
  17. @@ -133,7 +133,7 @@ endif
  18. ifeq ($(ARCH), arm64)
  19. ifeq ($(KVER),$(filter 4.1% 4.4% 4.9% 5.4%,$(KVER)))
  20. - CPU_CFLAG= -DMODULE -Os -pipe -march=armv8-a -mcpu=cortex-a53+crypto -fno-caller-saves -fno-strict-aliasing -Werror -fno-common -Wno-format-security -Wno-pointer-sign -Wno-unused-but-set-variable -Wno-error=unused-result -mcmodel=large
  21. + CPU_CFLAG= -DMODULE -Os -pipe -march=armv8-a -mcpu=cortex-a53+crypto -fno-caller-saves -fno-strict-aliasing -fno-common -Wno-format-security -Wno-pointer-sign -Wno-unused-but-set-variable -Wno-error=unused-result -mcmodel=large
  22. endif
  23. endif