[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Workaround for sse_test_dummy/DRI problem



I was able to run my GL apps with Direct Rendering like this:

Since this is a missing symbol problem, I created a single C file
to provide the symbol:

 void sse_test_dummy(void) {}

And I made a shared library with it:

 gcc -c -fPIC test.c
 gcc -shared test.o -o libfoo.so

Finally, I use LD_PRELOAD to load the lib:

 # export LD_PRELOAD=/home/chauveau/libfoo.so
 # glxinfo

I dont know what sse_test_dummy is supposed to do but I was able to run all my GL apps without any problems (including RTCW and ET).


--
Stephane Chauveau
Leenderweg 112
5555CG Valkenswaard
The Netherlands

Tel: (+31) 40 2021854
mailto:stephane@chauveau-central.net
http://www.chauveau-central.net



Reply to: