diff mbox

Build on i386

Message ID ee9cc730911090639w3852b6d1k5c5bf3f31bfe5a92@mail.gmail.com
State New
Headers show

Commit Message

jamesmikedupont@googlemail.com Nov. 9, 2009, 2:39 p.m. UTC
Hi ,
I have patched the qemu to even build on i386. Now all the targets build,
but I cannot run all targets.

./i386-softmmu/qemu -L / /bin/ls
qemu: could not load PC BIOS 'bios.bin'

Does not work.

./i386-linux-user/qemu-i386 -L / /bin/ls
qemu: Unsupported syscall: 240
qemu: Unsupported syscall: 240
acl.c				config-host.ld	   kvm-all.c		  posix-aio-compat.o	
qemu-thread.c		 target-cris
acl.d				config-host.mak    kvm.h		  ppc64abi32-linux-user
qemu-thread.h		 target-i386

Works.


./x86_64-softmmu/qemu-system-x86_64 -L / /bin/ls
qemu: could not load PC BIOS 'bios.bin'
mdupont@introspector-desktop:~/2009/11/external/qemugit/mainline/qemu$
./x86_64-linux-user/qemu-x86_64 -L / /bin/ls
Error -8 while loading /bin/ls



 LDFLAGS="-g $LDFLAGS"

Comments

Laurent Desnogues Nov. 9, 2009, 2:55 p.m. UTC | #1
On Mon, Nov 9, 2009 at 3:39 PM, jamesmikedupont@googlemail.com
<jamesmikedupont@googlemail.com> wrote:
[...]
> ./i386-softmmu/qemu -L / /bin/ls
> qemu: could not load PC BIOS 'bios.bin'
>
> Does not work.

Do you know what softmmu means?  You should read QEMU
user manual.

[...]
> ./x86_64-softmmu/qemu-system-x86_64 -L / /bin/ls
> qemu: could not load PC BIOS 'bios.bin'
> mdupont@introspector-desktop:~/2009/11/external/qemugit/mainline/qemu$
> ./x86_64-linux-user/qemu-x86_64 -L / /bin/ls
> Error -8 while loading /bin/ls

This can't run given that your /bin/ls is an i386 executable.


Laurent
diff mbox

Patch

diff --git a/configure b/configure
index aa2cc43..451c2be 100755
--- a/configure
+++ b/configure
@@ -1736,7 +1736,8 @@  if test "$debug" = "no" ; then
 fi
 QEMU_CFLAGS="-Wall -Wundef -Wendif-labels -Wwrite-strings
-Wmissing-prototypes $QEMU_CFLAGS"
 QEMU_CFLAGS="-Wstrict-prototypes -Wredundant-decls $QEMU_CFLAGS"
-QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
$QEMU_CFLAGS"
+#QEMU_CFLAGS="-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
-D_LARGEFILE_SOURCE $QEMU_CFLAGS"
+QEMU_CFLAGS="-D_GNU_SOURCE -D_LARGEFILE_SOURCE $QEMU_CFLAGS"
 QEMU_CFLAGS="-U_FORTIFY_SOURCE $QEMU_CFLAGS"
 QEMU_CFLAGS="-I. -I\$(SRC_PATH) $QEMU_CFLAGS"