[Mono-devel-list] Building from cvs

Roland Troisch rolandt at popmultimedia.com
Fri Jun 13 15:08:51 EDT 2003


Hi there, this was working perfectly for me except:

"tar zxvf ../monocharge-20030607.tar.gz
cd ..
mono/doc/mono-build.sh"

that second build still produced the same errors, is there a step
missing after the tar command?, and...

 adding the few lines to my bash file...my redhat 9 machine says 
- bash: Add: command not found

anybody know what gives?

- rt

-----Original Message-----
From: Richard Torkar [mailto:richard.torkar at htu.se] 
Sent: Thursday, June 12, 2003 1:49 AM
To: Krieg Andreas; mono-devel
Subject: Re: [Mono-devel-list] Building from cvs

On Thu, 2003-06-12 at 10:38, Krieg Andreas wrote:
> Hi all great mono developers...
> 
> Sorry for that really stupid question (do we have Monday?:-)) but i'am
> trying to build now mono from cvs.
> 
> I checked out in the morning mono, mcs and gtk-sharp, I ran the script
> mono/doc/mono-build.sh ... all went fine.
> 

This is what I did:

cd ~
mkdir install
cd install
export CVSROOT=:pserver:anonymous at anoncvs.go-mono.com:/mono
cvs co mcs mono gtk-sharp
mono/doc/mono-build.sh
(After a while it finishes with a bunch of errors complaining about not
being able to found some dlls)
wget https://java.thn.htu.se/~toor/misc/monocharge-20030607.tar.gz
cd install
tar zxvf ../monocharge-20030607.tar.gz
cd ..
mono/doc/mono-build.sh (it goes through everything again without
actually compiling anything, but this time it ends without an error)
Add this to your ~/.bash_profile
************
Add $HOME/install/install/bin to your PATH.
LD_LIBRARY_PATH=$HOME/install/install/lib
Add PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HOME/install/install/lib/pkgconfig
export PATH LD_LIBRARY_PATH PKG_CONFIG_PATH
************
Do a: "source ~/.bash_profile" to use the changes without logging out.
Now you have a working set up.

If you want to compile and use gtk# then just do:
cd ~/install/gtk-sharp
./autogen.sh --prefix=$HOME/install/install
make && make install

If you want to update everything then do:
cd ~/install/mcs
cvs -z3 update -Pd
make -f makefile.gnu
cd ..
mono/doc/mono-build.sh
cd mcs
make -f makefile.gnu install prefix=$HOME/install/install

I hope it's clear enough! :)

/Richard 
-- 
"UNIX is basically a simple operating system, but you have to be a
genius to understand the simplicity."

_______________________________________________
Mono-devel-list mailing list
Mono-devel-list at lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list



More information about the Mono-devel-list mailing list