Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-30 Thread Jeremy Bell
Yes, this fixes the build. Thanks. The cff0ecb816fdd10419550b549137f48b5a14ff88 checkin did break the build for me, though it looks like you've reverted it (haven't tested it since then). 655afb183bd8abac0b60307645c9b43ff37b3082 appears to build fine. Here is my build script, if you're

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-29 Thread Jeremy Bell
I'm not sure if this is the best way to fix the issue, but I've submitted a pull request with a small fix: https://github.com/mono/mono/pull/650 This is my first mono pull request, so please let me know if there are any contrib guidelines I missed. Regards, Jeremy On Thu, May 23, 2013 at 2:25

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-29 Thread Zoltan Varga
Hi, This should be fixed now by 655afb183bd8abac0b60307645c9b43ff37b3082. Could you try it out ? Zoltan On Wed, May 29, 2013 at 6:00 PM, Jeremy Bell bell.jer...@gmail.com wrote: I'm not sure if this is the best way to fix the issue, but I've submitted a pull request with a

[Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-23 Thread Jeremy Bell
At some point between branch mono-2-10-9 and branch master, a change was made to /mono/mini/main.c: branch mono-2-10-9: main.c: #include config.h #include mini.h #ifndef HOST_WIN32 #include buildver.h #endif branch master: #include config.h #include mini.h #ifndef HOST_WIN32 #ifdef

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-23 Thread Rodrigo Kumpera
mini.c should not have this. All files in mini should no longer depends on either defines. But please move to mono 3.0 as 2.10 is not longer been actively maintained. On Thu, May 23, 2013 at 11:01 AM, Jeremy Bell bell.jer...@gmail.com wrote: At some point between branch mono-2-10-9 and branch

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-23 Thread Jeremy Bell
Thanks! I assumed I was moving to mono 3 by moving to the master branch on git (I'm building from git). Is this not correct? Or am I missing some configuration step? This issue is actually in the master branch (the mono-2-10-9 branch builds just fine), which I assume is where the latest

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-23 Thread Zoltan Varga
Hi, buildver.h is always built unless some configure flag disables it. What configure arguments are you using ? Zoltan On Thu, May 23, 2013 at 5:01 PM, Jeremy Bell bell.jer...@gmail.com wrote: At some point between branch mono-2-10-9 and branch master, a change was made to

Re: [Mono-dev] /mono/mini/main.c build error: depends on HAVE_SGEN_GC define, making it impossible to compile for sgen

2013-05-23 Thread Jeremy Bell
These: export SYSROOT=$NDK/platforms/android-14/arch-arm export PATH=$NDK_STANDALONE/bin:$PATH export CC=arm-linux-androideabi-gcc export CXX=arm-linux-androideabi-g++ export AR=arm-linux-androideabi-ar export AS=arm-linux-androideabi-as export CPP=arm-linux-androideabi-cpp export