Game Development Community

Problems with Installation in Linux

by Larry Holder · in Torque Game Engine · 01/29/2007 (1:15 pm) · 4 replies

I bought Indie version of Game Engine for $150, I am stuck in the process of installation in Linux (Suse 10.1) as I got errors.

On SDK I tried:

make -f mk/configure.mk OS=LINUX COMPILER=GCC4 BUILD=RELEASE

make

I got errors:

Compiling collision/convexBrush.cc
In file included from ./interior/interiorMapRes.h:9,
from ./collision/convexBrush.h:12,
from collision/convexBrush.cc:1:
./dgl/gTexManager.h:428:26: warning: no newline at end of file
./collision/optimizedPolyList.h:37: error: extra qualification 'OptimizedPolyList::Poly::' on member 'Poly'
make[1]: *** [..GCC4.RELEASE/collision/convexBrush.obj] Error 1
make: *** [default] Error 2

Can some one suggest me how I can get rid of this error.

#2
01/30/2007 (11:57 am)
Thanks for this help.
Now it worked.
#3
01/30/2007 (12:13 pm)
Torque attempts to statically link against libGLU, and you don't have a static libGLU.

This thread should help: Problem linking Torque against libGLU.so

Gary (-;
#4
01/30/2007 (12:20 pm)
I resolved -lGLU issue by compiling Mesa as per instructions.
Thanks again.