Re: [kvm-devel] kvm-31 configure file bug

2007-07-24 Thread Avi Kivity
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.

Re: [kvm-devel] kvm-31 configure file bug

2007-07-23 Thread Simon Gao
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

Re: [kvm-devel] kvm-31 configure file bug

2007-07-23 Thread Avi Kivity
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

Re: [kvm-devel] kvm-31 configure file bug

2007-07-22 Thread Simon Gao
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

Re: [kvm-devel] kvm-31 configure file bug

2007-07-22 Thread Avi Kivity
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 > } > ===

[kvm-devel] kvm-31 configure file bug

2007-07-21 Thread Simon Gao
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,