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: Peter Maydell <peter.maydell@linaro.org>
Tested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Fam Zheng 2014-09-03 11:44:55 +08:00 committed by Paolo Bonzini
parent ddbc41de38
commit f6e0830298
2 changed files with 8 additions and 4 deletions

View file

@ -98,4 +98,12 @@ unsigned long qemu_getauxval(unsigned long type)
return 0;
}
#else
unsigned long qemu_getauxval(unsigned long type)
{
return 0;
}
#endif