]> Git Repo - J-linux.git/commitdiff
scripts/faddr2line: Add CONFIG_DEBUG_INFO check
authorJosh Poimboeuf <[email protected]>
Thu, 21 Jul 2022 18:01:24 +0000 (11:01 -0700)
committerIngo Molnar <[email protected]>
Tue, 2 Aug 2022 20:08:17 +0000 (22:08 +0200)
Otherwise without DWARF it spits out gibberish and gives no indication
of what the problem is.

Suggested-by: John Garry <[email protected]>
Signed-off-by: Josh Poimboeuf <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Tested-by: John Garry <[email protected]>
Link: https://lore.kernel.org/r/ffa7734c929445caa374bf9e68078300174f09b4.1658426357.git.jpoimboe@kernel.org
scripts/faddr2line

index 57099687e5e1d97074bcaa040fd9919c141bfb18..5514c23f45c24fdbe0968c95275103ef2e545f09 100755 (executable)
@@ -61,6 +61,7 @@ die() {
 READELF="${CROSS_COMPILE:-}readelf"
 ADDR2LINE="${CROSS_COMPILE:-}addr2line"
 AWK="awk"
+GREP="grep"
 
 command -v ${AWK} >/dev/null 2>&1 || die "${AWK} isn't installed"
 command -v ${READELF} >/dev/null 2>&1 || die "${READELF} isn't installed"
@@ -271,6 +272,8 @@ LIST=0
 [[ ! -f $objfile ]] && die "can't find objfile $objfile"
 shift
 
+${READELF} --section-headers --wide $objfile | ${GREP} -q '\.debug_info' || die "CONFIG_DEBUG_INFO not enabled"
+
 DIR_PREFIX=supercalifragilisticexpialidocious
 find_dir_prefix $objfile
 
This page took 0.048897 seconds and 4 git commands to generate.