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
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
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;