Monoprofile Error on Mac OS X

I tried to run the monoprofile, as explained here , but I received this error message.

ver6> mono --profile=log program.exe 
Error loading profiler module 'mono-profiler-log': dlopen(libmono-profiler-log.bundle, 9): image not found

Is this a mono error?

My version of OS X is 10.6.7, and I am using mono 2.10.2.

solvable

After adding the path /Library/Frameworks/Mono.framework/Versions/2.10.2/libto .bashrc the export DYLD_LIBRARY_PATH="/Library/Frameworks/Mono.framework/Versions/2.10.2/lib"problem disappeared.

+3
source share
1 answer

You either do not have the file installed, or you need to set DYLD_LIBRARY_PATH env var to point to the directory in which it is located. Look for libmono-profiler-log.dylib, the .bundle extension is backup.

+2
source

All Articles