diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-07-29 09:11:12 -1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-30 07:04:04 +1000 |
| commit | a56ef5e8454e42c0d263a97a1297ae67f4ce19cd (patch) | |
| tree | e63579b2fa0772cb9d4bd9a6f2b93d5488de1ceb /linux-user/loader.h | |
| parent | 8d4a6f8e4c95e11a3da2e38682da2819d4e2160c (diff) | |
| download | focaccia-qemu-a56ef5e8454e42c0d263a97a1297ae67f4ce19cd.tar.gz focaccia-qemu-a56ef5e8454e42c0d263a97a1297ae67f4ce19cd.zip | |
linux-user: Move init_guest_commpage to arm/elfload.c
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/loader.h')
| -rw-r--r-- | linux-user/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/loader.h b/linux-user/loader.h index 98015fba7d..0c2cc556c3 100644 --- a/linux-user/loader.h +++ b/linux-user/loader.h @@ -105,7 +105,7 @@ const char *elf_hwcap_str(uint32_t bit); const char *elf_hwcap2_str(uint32_t bit); const char *get_elf_platform(CPUState *cs); const char *get_elf_base_platform(CPUState *cs); -#if defined(TARGET_X86_64) +#if defined(TARGET_X86_64) || defined(TARGET_ARM) bool init_guest_commpage(void); #endif |