Skip to content

Commit

Permalink
mksysmap: Add h8300 local symbol pattern
Browse files Browse the repository at this point in the history
h8300's nm output have a lot of local symbols.
ex)
00000000 N .Lframe0
00000013 N .LLST1
00000026 N .LLST2
00000039 N .LLST3
0000004c N .LLST4
Added new pattern " .L" to filter rule.

Signed-off-by: Yoshinori Sato <[email protected]>
  • Loading branch information
ysat0 committed Jun 23, 2015
1 parent 4e456b8 commit 00902e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mksysmap
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@
# so we just ignore them to let readprofile continue to work.
# (At least sparc64 has __crc_ in the middle).

$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)' > $2
$NM -n $1 | grep -v '\( [aNUw] \)\|\(__crc_\)\|\( \$[adt]\)\|\( .L\)' > $2

0 comments on commit 00902e9

Please sign in to comment.