On Fri, Apr 8, 2016 at 7:15 PM, Kristen R <kris...@atmyhome.org> wrote: > >> On Apr 8, 2016, at 3:02 AM, Mathieu Malaterre <ma...@debian.org> wrote: >> >> Dear all, >> >> Does anyone of you has access to an SMP PPC32 machine ? I need to >> check if an issue I am seeing on an SMP PPC64 kernel (PPC32 userland) >> can be reproduced on a pure SMP PPC32 machine. >> >> Thanks much for help. >> >> -M >> > > I have the PowerPC is question. With the original 450MHz dual processor or a > Sonnet 1.6GHz which is currently in the machine. And I have a weekend too! > > How can I help?
Neat ! So: 1. Make sure you are running linux-image-powerpc-smp (uname -a to check). 2. Step: $ sudo apt-get build-dep mono-devel $ cd $HOME $ git clone https://github.com/mono/mono.git && cd mono $ ./autogen.sh --prefix=$HOME/blah $ make get-monolite-latest $ make V=1 PROFILE=basic Technically it should fails at this point. If not, I'd interested in the following log file: $ cd mcs/class/System $ export MONO_PATH="./../../class/lib/monolite:$MONO_PATH" $ $HOME/mono/mono/mini/mono --verify-all ./../../class/lib/monolite/basic.exe -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -unsafe -target:library -out:../../class/lib/basic/secxml/System.dll @./../../build/deps/basic_System.dll.sources >& runtime.log as well as: $ valgrind --tool=helgrind $HOME/mono/mono/mini/mono --verify-all ./../../class/lib/monolite/basic.exe -d:NET_4_0 -d:NET_4_5 -d:MONO -d:BOOTSTRAP_BASIC -nowarn:1699 -d:DISABLE_CAS_USE -lib:./../../class/lib/basic -optimize /noconfig -nowarn:618 -d:CONFIGURATION_2_0 -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX -d:MONO_FEATURE_PROCESS_START -d:MONO_FEATURE_THREAD_ABORT -d:MONO_FEATURE_THREAD_SUSPEND_RESUME -unsafe -target:library -out:../../class/lib/basic/secxml/System.dll @./../../build/deps/basic_System.dll.sources >& helgrind.log Thanks much !