Game Development Community

Dark Horizons: Linux

by Anthony Rosenbaum · in General Discussion · 09/24/2004 (11:12 am) · 4 replies

I just wanted to point out we have Lore on Linix now, demo are up please give them a try.

#1
09/24/2004 (3:38 pm)
Lore is rocking :)
#2
09/29/2004 (8:33 am)
Hmm, I'm getting this error on Fedora Core 1:

libgcc_s.so.1 must be installed for pthread_cancel to work

I'm a little surprised as other Torque games work just fine. Any ideas?
#3
09/29/2004 (8:58 am)
Please post on the Dark Horizon's Forum, they have all the bug fixes, and monitor it closely.

In fact Here is the issue

Quote:Originally posted by swood ...
"When trying to run 'loredemo' I receive this error;
"libgcc_s.so.1 must be installed for pthread_cancel to work"
there is a sym link in /lib that points to "/lib/libgss_s-3.4.1.so.1"
My system is Mandrake 10.1 Community.

I would realy like to try this game out, but won't consider buying until the demo can at least run.

Thanks"


I run MDK 10.1 Cooker, and had the same probs like you... "libgcc_s.so.1...".


cd to where you installed the dir "Loredemo/"

cd to Loredemo/lib/

delete the files: libgcc_s.so.1 and libstdc++.so.5

make a symlink for libgcc_s.so.1:
$ ln -s /lib/ligcc_s-3.4.1.so.1

rename that symlink: libgcc_s.so.1

make a symlink for libstdc++.so.5:
$ ln -s /usr/lib/libstdc++.so.5.0.6

rename that symlink: libstdc++.so.5

Should work now
#4
09/29/2004 (9:05 am)
Thanks :)