Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Jonathan Purdy
> > - Is there a way for me to run the sgen implementation test suite ? Yes, “make check -C mono” will run the runtime tests, which include tests for SGen. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Alexander Köplinger
(sorry, hit send too early...) FYI --with-gc=sgen doesn't make sense since the --with-gc option only controls the Boehm GC (see https://github.com/mono/mono#configuration-options). - Alex 2016-04-04 16:03 GMT+02:00 Alexander Köplinger < alexander.koeplin...@xamarin.com>: > FYI --with-gc=sgen

Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Alexander Köplinger
FYI --with-gc=sgen doesn' 2016-04-04 14:25 GMT+02:00 Mathieu Malaterre : > As a side note, I can build mono on SMP PowerPC using an easy hack: > > export MONO_GC_PARAMS=nursery-size=1073741824 > ./autogen.sh --prefix=$HOME/blah --with-gc=sgen --disable-boehm >

Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Mathieu Malaterre
As a side note, I can build mono on SMP PowerPC using an easy hack: export MONO_GC_PARAMS=nursery-size=1073741824 ./autogen.sh --prefix=$HOME/blah --with-gc=sgen --disable-boehm --enable-checked-build=all --disable-nls --with-sgen=yes make V=1 PROFILE=basic -M

Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Miguel de Icaza
> > > - Does MONO_THREADS_PER_CPU=1 control the number of threads created by > sgen-gc implementation ? It does not seems so on my side. > This has not relationship to the GC, just to the system thread pool. Miguel. ___ Mono-devel-list mailing list

Re: [Mono-dev] Running Mono on 32bits-big endian PowerPC

2016-04-04 Thread Mathieu Malaterre
Hi all, Thanks for the explanation for '-d', that was obvious :) I can compile mono (make V=1 PROFILE=basic) on PowerPC system using: ./autogen.sh --prefix=$HOME/blah --disable-parallel-mark --with-gc=none --enable-checked-build=all --disable-nls --with-sgen=no So clearly there is something