hi marmistrz i have modify the env file Such as preenv i Changed MEE to meecolay in webs we write preenv and play the games i make the same in meecolay to play the games Because MEE not in usr/bin but meecolay in usr/bin Code: if [ -n "$meecolay_ROOT" ]; then export meecolay_ROOT else # This needs to improve, but works well enough for debugging. # wrapper.sh will set a hardcoded /opt path. export meecolay_ROOT=$(pwd) fi if [ -n "$PATH" ]; then export PATH="$meecolay_ROOT/bin:$PATH" else export PATH="$meecolay_ROOT/bin" fi if [ -n "$LD_PRELOAD" ]; then export LD_PRELOAD="$meecolay_ROOT/lib/libstdc++.so.6:$LD_PRELOAD" else export LD_PRELOAD="$meecolay_ROOT/lib/libstdc++.so.6" fi if [ -n "$LD_LIBRARY_PATH" ]; then export LD_LIBRARY_PATH="$meecolay_ROOT/lib:$LD_LIBRARY_PATH:/opt/qtm12/lib" else export LD_LIBRARY_PATH="$meecolay_ROOT/lib:/opt/qtm12/lib" fi if [ -n "$QML_IMPORT_PATH" ]; then export QML_IMPORT_PATH="/opt/qtm12/imports:$QML_IMPORT_PATH" else export QML_IMPORT_PATH="/opt/qtm12/imports" fi and When I write meecolay The result is ERROR: ld.so: object '/home/user/lib/libstdc++.so.6' from LD_PRELOAD cannot be preloaded: ignored. ldconfig: /usr/lib/libstdc++.so.6.0.17-gdb.py is not an ELF file - it has the wrong magic bytes at the start. i copy meecolay lib to /home/user/ in new folder /home/user/lib and Retry and write meecolay it Work ok Without No problem but When i try play fragger & Candyboy And many The problem is ERROR: ld.so: object '/home/user/MyDocs/amr/games/meecolay/Candyboy/opt/candyboy/bin/lib/libstdc++.so.6' from LD_PRELOAD cannot be preloaded: ignored. ./candyboy: symbol lookup error: /opt/qtm12/lib/libQtOpenGL.so.4: undefined symbol: _ZN15QGraphicsSystem17platformExtensionEv import com.nokia.meego 1.0 ^ ERROR: ld.so: plugin cannot be loaded for module "QtMultimediaKit": Cannot load library /opt/qtm12/imports/QtMultimediaKit/libdeclarative_multimedia.so: (/opt/qtm12/lib/libQtOpenGL.so.4: undefined symbol: _ZN15QGraphicsSystem17platformExtensionEv) import QtMultimediaKit 1.1 ^ How can I solve the problem of libstdc++.so.6' from LD_PRELOAD cannot be preloaded symbol lookup error: /opt/qtm12/lib/libQtOpenGL.so.4: undefined symbol: _ZN15QGraphicsSystem17platformExtensionEv cannot be loaded for module "com.nokia.meego": Cannot load library /opt/lib/qt4/imports/com/nokia/meego/libmeegoplugin.so: (/opt/qtm12/lib/libQtOpenGL.so.4: undefined symbol: _ZN15QGraphicsSystem17platformExtensionEv) import com.nokia.meego 1.0 ^ cannot be loaded for module "QtMultimediaKit": Cannot load library /opt/qtm12/imports/QtMultimediaKit/libdeclarative_multimedia.so: (/opt/qtm12/lib/libQtOpenGL.so.4: undefined symbol: _ZN15QGraphicsSystem17platformExtensionEv) import QtMultimediaKit 1.1 ^ Especially libstdc++.so.6' from LD_PRELOAD cannot be preloaded and i have problem of u app applauncherd Every time i use root /var/lib/dpkg/info/applauncherd-launcher.postinst: line 19: aegisfs: not found i install aegisfs And did not solve the problem the problem in usr/share/doc/applauncherd-launcher no such file or directory i unzip the applauncherd deb and copy usr/share/doc/applauncherd-launcher and put it in usr/share/doc/ And did not solve the problem too How can I solve this problem thanks
if [ -n "$meecolay_ROOT" ]; then export meecolay_ROOT else # This needs to improve, but works well enough for debugging. # wrapper.sh will set a hardcoded /opt path. export meecolay_ROOT=$(pwd) fi if [ -n "$PATH" ]; then export PATH="$meecolay_ROOT/bin:$PATH" else export PATH="$meecolay_ROOT/bin" fi if [ -n "$LD_PRELOAD" ]; then export LD_PRELOAD="$meecolay_ROOT/lib/libstdc++.so.6:$LD_PRELOAD" else export LD_PRELOAD="$meecolay_ROOT/lib/libstdc++.so.6" fi if [ -n "$LD_LIBRARY_PATH" ]; then export LD_LIBRARY_PATH="$meecolay_ROOT/lib:$LD_LIBRARY_PATH:/opt/qtm12/lib" else export LD_LIBRARY_PATH="$meecolay_ROOT/lib:/opt/qtm12/lib" fi if [ -n "$QML_IMPORT_PATH" ]; then export QML_IMPORT_PATH="/opt/qtm12/imports:$QML_IMPORT_PATH" else export QML_IMPORT_PATH="/opt/qtm12/imports" fi