From 87d60b9d017e4c1a7398f0adef1116951f8041fa Mon Sep 17 00:00:00 2001 From: Ivo Raisr Date: Mon, 15 May 2017 11:01:28 +0000 Subject: [PATCH] Fix a build problem introduced by SVN commit r16365. Fixes BZ#370028 Patch by: Tamara Vlahovic git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16377 --- coregrind/launcher-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/launcher-linux.c b/coregrind/launcher-linux.c index 96e3cf4962..8e7c73475a 100644 --- a/coregrind/launcher-linux.c +++ b/coregrind/launcher-linux.c @@ -261,7 +261,7 @@ static const char *select_platform(const char *clientname) (header.ehdr64.e_ident[EI_OSABI] == ELFOSABI_SYSV || header.ehdr64.e_ident[EI_OSABI] == ELFOSABI_LINUX)) { platform = "mips64-linux"; - } else if (header.ehdr64.e_machine == EM_TILEGX && + } else if (header.ehdr64.e_machine == EM_AARCH64 && (header.ehdr64.e_ident[EI_OSABI] == ELFOSABI_SYSV || header.ehdr64.e_ident[EI_OSABI] == ELFOSABI_LINUX)) { platform = "arm64-linux"; -- 2.47.2