[SOLVED] Re: [Qemu-devel] 32bit emulation in x86_64 System emulation

2005-11-11 Thread Mario Goppold
Hi list, i have found some partial solutions for my problem: 1st: write a script for individual programs #!/bin/sh export LD_ASSUME_KERNEL=2.4 # this disables tls a.out # or some useful 2nd: disable thread-local storage (tls) for 32-bit programs mv /lib/tls /lib/tls.disabled

[Qemu-devel] 32bit emulation in x86_64 System emulation

2005-10-27 Thread Mario Goppold
Hi list, I've tried to install SuSE92 x68_64 as guest (qemu 0.7.2 with and without kqemu). During the install grub terminates with core. But not only grub terminates: #include stdio.h int main() { printf(Hallo Welt!\n); return 0; } gcc a.c ; ./a.out is ok but gcc