in the exceptionhandler.c file and just wondered why? Does it not work correctly or does it not compile correctly or just what is the problem?
Zarel, have you tried to change !defined(WZ_OS_MAC) to defined(WZ_OS_MAC) for testing?
This is a waste of space. Something important should be here.
Mac dumps are useless as they are now.
To get any real results you must do this
put your release build and your .dSYM file in the same directory and use GDB to get symbolic information for numeric addresses.
Zarel, can you make a new test build and do this
the Xcode build setting reference tells us how to configure this. Or so one would think. Well, at least the relevant build settings are found in the environment variables … after you’ve written your shell script. The Xcode build transcript normally doesn’t show environment variables, but you can add a run script build phase to your target and check the option “Show environment variables in build log”. The environment variables reveal the default values for DWARF_DSYM_FOLDER_PATH and DWARF_DSYM_FILE_NAME, which Xcode uses in creating the dSYM file. Although you won’t find them in the target’s list of build settings, you can create them yourself in the User-Defined section. To embed the dSYM within the app bundle, just set DWARF_DSYM_FOLDER_PATH to $(CONFIGURATION_BUILD_DIR)/$(EXECUTABLE_FOLDER_PATH) and DWARF_DSYM_FILE_NAME to $(EXECUTABLE_NAME).dSYM. These settings should work for both apps and frameworks.
I hope that will get better crash dumps for macs unless you want to update each crash dump in the tracker with the gdb output after converting it?
This is a waste of space. Something important should be here.
Zarel wrote:Hrm. We've apparently been stripping the release binaries for some reason. I just committed r8175, which should fix that.
lol
I was about to say it is better with this ticket since it shows the line numbers, then I thought, they must strip the builds! http://developer.wz2100.net/ticket/952 since that looks like a self compiled version.
This is a waste of space. Something important should be here.