linux_user: elfload: Default ELF_MACHINE to ELF_ARCH
authorPeter Crosthwaite <crosthwaite.peter@gmail.com>
Sun, 19 Jul 2015 12:02:37 +0000 (05:02 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 25 Sep 2015 10:04:43 +0000 (12:04 +0200)
In most (but not all) cases, ELF_MACHINE and ELF_ARCH are safely the
same. Default ELF_MACHINE to ELF_ARCH. This makes defining ELF_MACHINE
optional for target-*/cpu.h when they are known to match.

Reviewed-by: Richard Henderson <rth@twiddle.net>
Acked-By: Riku Voipio <riku.voipio@linaro.org>
Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
linux-user/elfload.c

index 39f32826baef536787bad6455776e5648c16bb01..4ed8c5e3374cd3c898ef70304a4676f99f3a6f73 100644 (file)
@@ -1245,6 +1245,10 @@ static inline void init_thread(struct target_pt_regs *regs,
 #define ELF_PLATFORM (NULL)
 #endif
 
+#ifndef ELF_MACHINE
+#define ELF_MACHINE ELF_ARCH
+#endif
+
 #ifndef ELF_HWCAP
 #define ELF_HWCAP 0
 #endif