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
This commit is contained in:
Aditya Kodukula
2023-04-22 15:44:39 -07:00
parent 4af4d95928
commit 5ffe7de03c

4
Kbuild
View File

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