elderic
02-23-2003, 03:35 PM
hi there,
I'm trying to get maya 4.5 running on debian 3. my only problem so far is (besides having to unpack nasty RPM-files by hand), that maya crashes when I try to launch it.
error message:
libTranslator.so -> relocation error. undefinded symbol __dynamic_cast_2.
As far as I know there are no problems with the newst libstdc++. all my own programs in C++ link and execute without any problems against current releases.
I tried to create a fake shared-lib via:
------------------------------------------------
#include <stdio.h>
void __dynamic_cast_2() {
// nothing to do here really
};
------------------------------------------------
export LD_PRELOAD=mayahack.so
-> and then run maya.bin
but now I only get segmentation faults.
does anyone know a way to get ahead of this issue?
I'm trying to get maya 4.5 running on debian 3. my only problem so far is (besides having to unpack nasty RPM-files by hand), that maya crashes when I try to launch it.
error message:
libTranslator.so -> relocation error. undefinded symbol __dynamic_cast_2.
As far as I know there are no problems with the newst libstdc++. all my own programs in C++ link and execute without any problems against current releases.
I tried to create a fake shared-lib via:
------------------------------------------------
#include <stdio.h>
void __dynamic_cast_2() {
// nothing to do here really
};
------------------------------------------------
export LD_PRELOAD=mayahack.so
-> and then run maya.bin
but now I only get segmentation faults.
does anyone know a way to get ahead of this issue?
