Changes between Version 6 and Version 7 of MacBacktrace
- Timestamp:
- Mar 25, 2008, 6:00:09 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MacBacktrace
v6 v7 24 24 25 25 {{{ 26 sudo cp [path]/BOINCManager_i386 /Applications/BOINCManager.app/Contents/MacOS/BOINCManager26 sudo cp {path}/BOINCManager_i386 /Applications/BOINCManager.app/Contents/MacOS/BOINCManager 27 27 }}} 28 28 You should then confirm that the ownership and permissions have not changed: … … 47 47 For example, to find a symbol in BOINC Manager version 5.10.45, at the command line in the Terminal application, first enter: 48 48 {{{ 49 atos -o ''path''/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i38649 atos -o {path}/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386 50 50 }}} 51 51 then enter any number of hex values separated by spaces or carriage returns. For example, entering the following: … … 68 68 If the symbols are in the same file as the executable, or if the separate .dSYM file is in the same directory as the executable, first enter the following on the command line in the Terminal application: 69 69 {{{ 70 gdb [path to executable file]70 gdb {path to executable file} 71 71 }}} 72 72 If the executable file is not in the same directory as the .dSYM file, do this instead: 73 73 {{{ 74 74 gdb 75 symbol [path to .dSYM file]75 symbol {path to .dSYM file} 76 76 }}} 77 77 … … 84 84 For example, again examining BOINC Manager version 5.10.45: 85 85 {{{ 86 gdb [path]/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i38686 gdb {path}/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386 87 87 info line *0x0007210a 88 88 }}}