Commit f6e08302 authored by Fam Zheng's avatar Fam Zheng Committed by Paolo Bonzini
Browse files

util: Move general qemu_getauxval to util/getauxval.c



So that we won't have an empty getauxval.o which is disliked by ranlib.

Reported-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Tested-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarFam Zheng <famz@redhat.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent ddbc41de
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -246,11 +246,7 @@ char *qemu_get_exec_dir(void);
 * Search the auxiliary vector for @type, returning the value
 * or 0 if @type is not present.
 */
#if defined(CONFIG_GETAUXVAL) || defined(__linux__)
unsigned long qemu_getauxval(unsigned long type);
#else
static inline unsigned long qemu_getauxval(unsigned long type) { return 0; }
#endif

void qemu_set_tty_echo(int fd, bool echo);

+8 −0
Original line number Diff line number Diff line
@@ -98,4 +98,12 @@ unsigned long qemu_getauxval(unsigned long type)

    return 0;
}

#else

unsigned long qemu_getauxval(unsigned long type)
{
    return 0;
}

#endif