mirror of
https://github.com/qemu/qemu.git
synced 2024-11-26 12:23:36 +08:00
linux-user: Add separate aarch64_be uname
Make big-endian aarch64 systems identify as aarch64_be as expected by big-endian userland and toolchains. Signed-off-by: Michael Weiser <michael.weiser@gmx.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-id: 20171220212308.12614-3-michael.weiser@gmx.de Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
dfdcf34031
commit
cb3aa5fea1
@ -8,7 +8,11 @@ struct target_pt_regs {
|
||||
uint64_t pstate;
|
||||
};
|
||||
|
||||
#if defined(TARGET_WORDS_BIGENDIAN)
|
||||
#define UNAME_MACHINE "aarch64_be"
|
||||
#else
|
||||
#define UNAME_MACHINE "aarch64"
|
||||
#endif
|
||||
#define UNAME_MINIMUM_RELEASE "3.8.0"
|
||||
#define TARGET_CLONE_BACKWARDS
|
||||
#define TARGET_MINSIGSTKSZ 2048
|
||||
|
Loading…
Reference in New Issue
Block a user