Game Development Community

Teach me how

by Daniel O'Malley · in Torque Game Engine · 10/22/2005 (4:00 pm) · 6 replies

I just put linux Ubuntu 5.10 on one of my computer, and i would like to download the sdk from the cvs server but i don't know how to do with linux and wich soft i need to take. On windows i use wincvs but on linux wich one i use. and after i got eclipse or EDI anjuta or KDevelop c/c+. can some body can give me a link for a good wincvs for linux and a good instruction too how to setup the cvs on linux and a good setup how to compile torque too
thanks

#1
10/22/2005 (4:23 pm)
Well if you are using wincvs on windows, http://www.wincvs.org/download.html has gCvs which is apparently the linux version of it.
I personally use emacs for all code editing and comand line stuff to build the binaries so I won't be able to help with kdevelop or any of the other gui type IDE's
#2
10/22/2005 (4:31 pm)
Thanks for the version of wincvs for linux
#3
10/22/2005 (5:35 pm)
I download all gCvs and i don't know how to install. the programme don't want to start.

and another think too i download the sdk 1.3 installer for linux. no probleme for the install, but when i go on the exemple folder and i click on the icon to start, nothing happen. i use Ubuntu 5.10 ( is a debian mod of linux)
thanks
#4
10/22/2005 (6:47 pm)
Daniel, the easiest way to download the stuff off of CVS, is to use it through a console, and not UI, for me anyway.

first CD to the directory
then cvs

Edit:
#5
10/22/2005 (7:13 pm)
You probably downloaded the rpm packaged version which won't install directly on ubuntu, your best bet to get that installed would be to use the ubuntu package stuff to install the version they packaged up.

Its in there, in the Development -> Universe group.
https://wiki.ubuntu.com/SynapticHowto

Tells you how to get to the package management thing.

Keep in mind I don't use Ubuntu.

Now the other bit, if you are going to use cvs, you will be on the bleeding edge so expect to bleed quite a bit. Things may not even build out of the cvs. There are more then likely bugs and other associated fun in there.

Do a search on the forum on how to use kdevelop to build torque (I know I saw it once or twice) or open a terminal window, cd to wherever you installed torque, and type:

make -f mk/configure.mk OS=LINUX COMPILER=GCC3 BUILD=DEBUG (or RELEASE)
then
make

after a bit it will copy the resulting binary to the example directory and it should work from there.

Once again, unless you are really comfortable with linux and programing with linux I would stay away from cvs till you get some more knowledge.
#6
10/23/2005 (10:34 am)
Thanks Gregory for all the good think you told me