[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 ldcon

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

2005-10-28 Thread Mario Goppold
Today I found out that the output of nm and ldd for both are identical. The binaries are exchangeable. In other words the compiler produces the same output. And here are the diffs between the strace calls (as attachment). What else can I do? Any suggestions? Mario Am Donnerstag, 27. Oktobe

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

2005-10-26 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 int main() { printf("Hallo Welt!\n"); return 0; } gcc a.c ; ./a.out is ok but gcc -m32 a.c;