hmmm.... you can always use lldb at the command line to debug the crash -- I usually do:
lldb pathToExe ( it's usually appName.app/Contents/MacOS/appName)
then
process launch
to run the app....
(also running the app from the command line via the full path to the exe can help (./appName.app/Contents/MacOS/appName)
On windows (not so much on mac) I've seen situations where running the app in the IDE can give different "current working directories" of where the app is thought to be located.