Browse Source

qcacld-3.0: Enable DWARFv4 to unblock compilation issues

Currently when DWARFv5 is enabled, wlan driver compilation fails
with error, INT DW_ATE_unsigned_1024 Error emitting BTF type.

To unblock this compilation issue, temporarily switch
back to DWARFv4.

Change-Id: I2e37aff054e8a6161a80e97a227153eb2df68a74
CRs-Fixed: 3475979
Aditya Kodukula 1 year ago
parent
commit
5ffe7de03c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Kbuild

+ 4 - 0
Kbuild

@@ -4826,6 +4826,10 @@ BUILD_TAG = "cld:$(CLD_IDS); cmn:$(CMN_IDS); dev:$(DEVNAME)"
 ccflags-y += -DBUILD_TAG=\"$(BUILD_TAG)\"
 endif
 
+ifeq ($(CONFIG_ARCH_PINEAPPLE), y)
+ccflags-y += -gdwarf-4
+endif
+
 # Module information used by KBuild framework
 obj-$(CONFIG_QCA_CLD_WLAN) += $(MODNAME).o
 ifeq ($(CONFIG_WLAN_RESIDENT_DRIVER), y)