News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

How to install CodeBlocks in university home-folder on Linux

Started by SavageOlive, March 29, 2009, 11:46:34 PM

Previous topic - Next topic

SavageOlive

Hi,

I've been using CodeBlocks with my Ubuntu laptop for a while, though I would also like to use CodeBlocks when I sit on one of the uni's terminals (using Redhat Linux). I have no idea how to install CodeBlocks to my home-folder, since I cannot install it with a package manager for obvious reasons. Could someone walk me through the steps necessary to make CodeBlocks run from somewhere within my home-folder on the uni's machines?

jarro_2783

I've actually done this at my uni. I checked out the svn on my own computer, configured and ran make dist to make a tarball. Then I just unpacked and installed. When you run configure, the main thing is to use --prefix to set somewhere in your local directory. I also had to install wxwidgets since they don't have that at my uni either.
I use a config script for mine:


$1/configure --prefix=/home/jarrydb/local \
--with-contrib-plugins=codestat,envvars,hexeditor,regex \
--with-wx-config=/home/jarrydb/local/bin/wx-config

SavageOlive

Thanks so much! I'm quite the beginner at Linux, so it would be really helpful if you could go into more detail? :)

jarro_2783

checkout the source and make a tarball from it


svn checkout svn://svn.berlios.de/codeblocks/trunk codeblocks
cd codeblocks
./bootstrap
./configure
make dist


you should now have a file called codeblocks-8.02svnVERSION.tar.gz
where VERSION will be the svn revision you checked out.
Copy this to a flash drive or cd.

At uni:
I had to unpack into /tmp because I didn't have enough disk quota to build it.

tar -xf /path/to/tarball/codeblocks-8.02svnVERSION.tar.gz
cd codeblocks-8.02svnVERSION
./configue --prefix=/home/username/local
make
make install


This will put it in ~/local, the binary will be ~/local/bin/codeblocks. I put that in my path so that I can run all my locally installed stuff the same as everything else.
To do that, at the start of ~/.bashrc put:
export PATH=$PATH:/home/username/local/bin
where username is your actual uni username.