[Mono-list] Newbie trying to read an XML

Gonzalo Paniagua Javier gonzalo@ximian.com
16 Feb 2003 06:11:50 +0100


El dom, 16 de 02 de 2003 a las 05:32, Lloyd Dupont escribió:
> Anyway another question comes to my mind.
> how could I have garbage collector support ?
> 
> I hade downloaded (along mono runtime, from mono website) Hans Boehm GC.
> I have installed it first 
> $ cd gc6.1
> $ ./configure
> $ gmake
> $ gmake install
> 
> then mono
> $ cd ../mono-0.19
> $ ./configure
> $ gmake
> $ gmake install
> 
> isn't it enough ?
> I check m system and found that I have a 
> /usr/local/lib/libgc.so which a symbolic link to libgc.so.1, which is the one 
> I have build with the HansBoehmGC package.
> isn't everything ok ?

You may copy libgc.so to /usr/lib and /usr/local/include/gc to
/usr/include/gc. Another option is running mono-build.sh like:
"CFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib bash
mono-build.sh"

-Gonzalo