diff options
author | Warner Losh | 2021-08-04 01:17:17 +0200 |
---|---|---|
committer | Warner Losh | 2021-09-10 22:13:06 +0200 |
commit | e2a74729181c51a0c9dff03bb7a99fc267bec996 (patch) | |
tree | 27c763a4ccfde547b31c508a45e6baaabce84ac9 /configure | |
parent | bsd-user: save the path to the qemu emulator (diff) | |
download | qemu-e2a74729181c51a0c9dff03bb7a99fc267bec996.tar.gz qemu-e2a74729181c51a0c9dff03bb7a99fc267bec996.tar.xz qemu-e2a74729181c51a0c9dff03bb7a99fc267bec996.zip |
bsd-user: start to move target CPU functions to target_arch*
Move the CPU functions into target_arch_cpu.c that are unique to each
CPU. These are defined in target_arch.h.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -721,6 +721,7 @@ GNU/kFreeBSD) ;; FreeBSD) bsd="yes" + bsd_user="yes" make="${MAKE-gmake}" audio_drv_list="oss try-sdl" audio_possible_drivers="oss sdl pa" @@ -782,12 +783,6 @@ Linux) ;; esac -if [ "$bsd" = "yes" ] ; then - if [ "$darwin" != "yes" ] ; then - bsd_user="yes" - fi -fi - : ${make=${MAKE-make}} # We prefer python 3.x. A bare 'python' is traditionally |