From: Ivo Raisr Date: Mon, 15 May 2017 11:01:28 +0000 (+0000) Subject: Fix a build problem introduced by SVN commit r16365. X-Git-Tag: svn/VALGRIND_3_13_0~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87d60b9d017e4c1a7398f0adef1116951f8041fa;p=thirdparty%2Fvalgrind.git 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 --- 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";