[rtems-tools commit] libelf: Use minimal environment for C translation with readelf.

Chris Johns chrisj at rtems.org
Mon Jan 9 21:40:09 UTC 2017


Module:    rtems-tools
Branch:    master
Commit:    31e22e337cf3d1f60e91142ac83b29b6b0f00713
Changeset: http://git.rtems.org/rtems-tools/commit/?id=31e22e337cf3d1f60e91142ac83b29b6b0f00713

Author:    Chris Johns <chrisj at rtems.org>
Date:      Mon Jan  9 09:05:18 2017 +1100

libelf: Use minimal environment for C translation with readelf.

The output of readelf needs to be in English.

---

 rtemstoolkit/elftoolchain/common/native-elf-format | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/rtemstoolkit/elftoolchain/common/native-elf-format b/rtemstoolkit/elftoolchain/common/native-elf-format
index af70759..4b06672 100755
--- a/rtemstoolkit/elftoolchain/common/native-elf-format
+++ b/rtemstoolkit/elftoolchain/common/native-elf-format
@@ -19,7 +19,7 @@ touch ${tmp_c}
 echo "/* Generated by ${program} on `date` */"
 
 cc -c ${tmp_c} -o ${tmp_o}
-readelf -h ${tmp_o} | awk '
+LANG="C" readelf -h ${tmp_o} | awk '
 $1 ~ "Class:" {
         sub("ELF","",$2); elfclass = $2;
     }
@@ -44,4 +44,3 @@ END {
     printf("#define	ELFTC_ARCH	%s\n", elfarch);
     printf("#define	ELFTC_BYTEORDER	ELFDATA2%s\n", elfdata);
 }'
-




More information about the vc mailing list