Simon Gao wrote:
> Avi Kivity wrote:
>
>> Simon Gao wrote:
>>
>>> So from kvm-31 and on, qemu command will become qemu-system-x86_64 no
>>> matter host system is 32bit or 64bit? So it's possible to compile 64bit
>>> kvm qemu with only 32bit libraries?
>>>
>>>
>>>
>> Yes and yes.
Avi Kivity wrote:
> Simon Gao wrote:
>>
>> So from kvm-31 and on, qemu command will become qemu-system-x86_64 no
>> matter host system is 32bit or 64bit? So it's possible to compile 64bit
>> kvm qemu with only 32bit libraries?
>>
>>
>
> Yes and yes. That's even more true for upstream qemu as w
Simon Gao wrote:
>
> So from kvm-31 and on, qemu command will become qemu-system-x86_64 no
> matter host system is 32bit or 64bit? So it's possible to compile 64bit
> kvm qemu with only 32bit libraries?
>
>
Yes and yes. That's even more true for upstream qemu as well -- you can
run a 64-bit
Avi Kivity wrote:
> Simon Gao wrote:
>> Hi,
>>
>> I found there is a bug with configure file shipped with kvm-31. Here is
>> the part of configure file:
>>
>> ===
>> target_cpu() {
>> if [[ $(uname -m) = i?86 ]]; then
>>echo x86_64
>> else
>> unam
Simon Gao wrote:
> Hi,
>
> I found there is a bug with configure file shipped with kvm-31. Here is
> the part of configure file:
>
> ===
> target_cpu() {
> if [[ $(uname -m) = i?86 ]]; then
>echo x86_64
> else
> uname -m
> fi
> }
> ===
Hi,
I found there is a bug with configure file shipped with kvm-31. Here is
the part of configure file:
===
target_cpu() {
if [[ $(uname -m) = i?86 ]]; then
echo x86_64
else
uname -m
fi
}
===
!?86 will match i386,