Re: [Mono-dev] Crash running C code built on OS X El Capitan in Xcode 7

2015-11-02 Thread Martin Potter
We ran into a similar problem with running Mono embedded in our application. I would guess that this is an issue with the version of pthread_getspecific that gets used when running from Xcode with LLDB attached when launching on 10.11. We have been running a custom version of Mono with a patch that

[Mono-dev] Crash running C code built on OS X El Capitan in Xcode 7

2015-11-02 Thread Jonathan Mitchell
The following C test code calls the current Mono 4.2.1-91 framework. It builds and runs fine within Xcode 6.4 on 10.10. It fails if I build and run it on OS X 10.11 using Xcode 7.1 - EXC_BAD_ACCESS in mono_jit_runtime_invoke() when calling AssemblyName:GetName() However the built binary runs fine

Re: [Mono-dev] Profiler Loading Issues

2015-11-02 Thread Alex Rønne Petersen
IIRC we just use dlopen(3) to load the profiler. So as far as Mono is concerned, the best you'll get is the dlerror(3) output. You might be able to get more detailed information with tools like strace(1), file(1), etc, though. Regards, Alex On Mon, Nov 2, 2015 at 8:13 AM, Greg Young wrote: > Jus