[Mono-list] Error building from master

2012-07-26 Thread Matt Calder
I am trying to build mono from the current master and the compile fails with numerous undefined reference to errors: /home/calder/tmp/mono/mono/metadata/sgen-cardtable.c:661: undefined reference to `sgen_alloc_os_memory'

Re: [Mono-list] Error building from master

2012-07-26 Thread Rodrigo Kumpera
Did you perform a clean build? If not, did you reconfigure mono? This usually happens when new files are added and you build without reconfiguring. On Thu, Jul 26, 2012 at 10:00 AM, Matt Calder mvcal...@gmail.com wrote: I am trying to build mono from the current master and the compile fails

Re: [Mono-list] Error building from master

2012-07-26 Thread Matt Calder
Rodrigo, Thanks for the quick response. As near as I can tell, what happened is this. Yesterday, I accidentally built/installed monodevelop using a prefix of /usr/local (I typically install using a prefix of /usr). I removed that by hand and quite possibly removed a piece of mono. Coincidentally,

Re: [Mono-list] Error building from master

2012-07-26 Thread Rodrigo Kumpera
There's a very simple way to avoid this problem in the future. Pass --enable-maintainer-mode to the configure script. This will make sure that when building mono it will check if the input files for the Makefiles have changed. This is a common oversight that I find myself doing over and over. So