From b3f0ecc3df0d61265cb4550397fe922754d0f546 Mon Sep 17 00:00:00 2001 From: Vladimir Isaev Date: Tue, 12 Apr 2022 16:21:01 +0300 Subject: [PATCH] ARC: pahole: workaround ARC toolchains generate 'complex float' DIE entries in libgcc. At the moment such entries are not yet handled by pahole. So for now disable BTF floats. Signed-off-by: Vladimir Isaev --- scripts/pahole-flags.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pahole-flags.sh b/scripts/pahole-flags.sh index e6093adf4c06d7..12cd096be97a3b 100755 --- a/scripts/pahole-flags.sh +++ b/scripts/pahole-flags.sh @@ -14,7 +14,7 @@ if [ "${pahole_ver}" -ge "118" ] && [ "${pahole_ver}" -le "121" ]; then extra_paholeopt="${extra_paholeopt} --skip_encoding_btf_vars" fi if [ "${pahole_ver}" -ge "121" ]; then - extra_paholeopt="${extra_paholeopt} --btf_gen_floats" + extra_paholeopt="${extra_paholeopt}" fi echo ${extra_paholeopt}