Linux kbuild/kconfig development
 help / color / mirror / Atom feed
* [PATCH] scripts: override locale from environment when running recordmcount.pl
@ 2019-04-24 17:55 Daniel Dadap
  2019-04-27  6:55 ` Masahiro Yamada
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Dadap @ 2019-04-24 17:55 UTC (permalink / raw)
  To: linux-kbuild; +Cc: Daniel Dadap

recordmcount.pl uses a set of regular expressions to parse the output of
objdump(1). However, if objdump(1) output is localized, it may not match
the regular expressions, thereby preventing recordmcount.pl from parsing
object files correctly.

In order to allow recordmcount.pl to function correctly regardless of the
current locale settings, set LANG=C when running objdump(1). LC_ALL is
already unset in the top-level Makefile, so it is not necessary to also
override that environment variable.

Signed-off-by: Daniel Dadap <ddadap@nvidia.com>
Reviewed-by: Robert Morell <rmorell@nvidia.com>
---
 scripts/recordmcount.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/recordmcount.pl b/scripts/recordmcount.pl
index 68841d01162c..b7bcdc71e6e8 100755
--- a/scripts/recordmcount.pl
+++ b/scripts/recordmcount.pl
@@ -493,7 +493,7 @@ sub update_funcs
 #
 # Step 2: find the sections and mcount call sites
 #
-open(IN, "$objdump -hdr $inputfile|") || die "error running $objdump";
+open(IN, "env LANG=C $objdump -hdr $inputfile|") || die "error running $objdump";
 
 my $text;
 
-- 
2.18.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-04-28  1:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-24 17:55 [PATCH] scripts: override locale from environment when running recordmcount.pl Daniel Dadap
2019-04-27  6:55 ` Masahiro Yamada
2019-04-27 15:08   ` Daniel Dadap
2019-04-27 15:21     ` [PATCH v2] " Daniel Dadap
2019-04-28  1:34       ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox