Skip to content

Commit fe257f4

Browse files
xilabaogregkh
authored andcommitted
scripts/recordmcount.pl: support big endian for ARCH sh
[ Upstream commit 93ca696 ] The kernel test robot reported the following issue: CC [M] drivers/soc/litex/litex_soc_ctrl.o sh4-linux-objcopy: Unable to change endianness of input file(s) sh4-linux-ld: cannot find drivers/soc/litex/.tmp_gl_litex_soc_ctrl.o: No such file or directory sh4-linux-objcopy: 'drivers/soc/litex/.tmp_mx_litex_soc_ctrl.o': No such file The problem is that the format of input file is elf32-shbig-linux, but sh4-linux-objcopy wants to output a file which format is elf32-sh-linux: $ sh4-linux-objdump -d drivers/soc/litex/litex_soc_ctrl.o | grep format drivers/soc/litex/litex_soc_ctrl.o: file format elf32-shbig-linux Link: https://lkml.kernel.org/r/20210210150435.2171567-1-rong.a.chen@intel.com Link: https://lore.kernel.org/linux-mm/202101261118.GbbYSlHu-lkp@intel.com Signed-off-by: Rong Chen <rong.a.chen@intel.com> Reported-by: kernel test robot <lkp@intel.com> Cc: Yoshinori Sato <ysato@users.osdn.me> Cc: Rich Felker <dalias@libc.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent a2c5e4a commit fe257f4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/recordmcount.pl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,11 @@ sub check_objcopy
268268

269269
# force flags for this arch
270270
$ld .= " -m shlelf_linux";
271-
$objcopy .= " -O elf32-sh-linux";
271+
if ($endian eq "big") {
272+
$objcopy .= " -O elf32-shbig-linux";
273+
} else {
274+
$objcopy .= " -O elf32-sh-linux";
275+
}
272276

273277
} elsif ($arch eq "powerpc") {
274278
my $ldemulation;

0 commit comments

Comments
 (0)