move cpu command line setting to the beggining
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> Message-Id:
This commit is contained in:
parent
d2ac582ca5
commit
2ff6b91e4f
10
configure
vendored
10
configure
vendored
@ -21,6 +21,7 @@ TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
|
|||||||
trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
|
trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
|
||||||
|
|
||||||
# default parameters
|
# default parameters
|
||||||
|
cpu=""
|
||||||
prefix=""
|
prefix=""
|
||||||
interp_prefix="/usr/gnemul/qemu-%M"
|
interp_prefix="/usr/gnemul/qemu-%M"
|
||||||
static="no"
|
static="no"
|
||||||
@ -44,6 +45,8 @@ for opt do
|
|||||||
;;
|
;;
|
||||||
--cc=*) cc="$optarg"
|
--cc=*) cc="$optarg"
|
||||||
;;
|
;;
|
||||||
|
--cpu=*) cpu="$optarg"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -78,7 +81,10 @@ EOF
|
|||||||
$cc $CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
|
$cc $CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
|
||||||
}
|
}
|
||||||
|
|
||||||
if check_define __i386__ ; then
|
if test ! -z "$cpu" ; then
|
||||||
|
# command line argument
|
||||||
|
:
|
||||||
|
elif check_define __i386__ ; then
|
||||||
cpu="i386"
|
cpu="i386"
|
||||||
elif check_define __x86_64__ ; then
|
elif check_define __x86_64__ ; then
|
||||||
cpu="x86_64"
|
cpu="x86_64"
|
||||||
@ -386,7 +392,7 @@ for opt do
|
|||||||
;;
|
;;
|
||||||
--extra-ldflags=*) EXTRA_LDFLAGS="$optarg"
|
--extra-ldflags=*) EXTRA_LDFLAGS="$optarg"
|
||||||
;;
|
;;
|
||||||
--cpu=*) cpu="$optarg"
|
--cpu=*)
|
||||||
;;
|
;;
|
||||||
--target-list=*) target_list="$optarg"
|
--target-list=*) target_list="$optarg"
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user