Changes between Version 6 and Version 7 of MacBacktrace


Ignore:
Timestamp:
Mar 25, 2008, 6:00:09 PM (16 years ago)
Author:
charlief
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MacBacktrace

    v6 v7  
    2424
    2525{{{
    26 sudo cp [path]/BOINCManager_i386 /Applications/BOINCManager.app/Contents/MacOS/BOINCManager
     26sudo cp {path}/BOINCManager_i386 /Applications/BOINCManager.app/Contents/MacOS/BOINCManager
    2727}}}
    2828You should then confirm that the ownership and permissions have not changed:
     
    4747For example, to find a symbol in BOINC Manager version 5.10.45, at the command line in the Terminal application, first enter:
    4848{{{
    49 atos -o ''path''/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386
     49atos -o {path}/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386
    5050}}}
    5151then enter any number of hex values separated by spaces or carriage returns.  For example, entering the following:
     
    6868If 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:
    6969{{{
    70 gdb [path to executable file]
     70gdb {path to executable file}
    7171}}}
    7272If the executable file is not in the same directory as the .dSYM file, do this instead:
    7373{{{
    7474gdb
    75    symbol [path to .dSYM file]
     75   symbol {path to .dSYM file}
    7676}}}
    7777
     
    8484For example, again examining BOINC Manager version 5.10.45:
    8585{{{
    86    gdb [path]/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386
     86   gdb {path}/boinc_5.10.45_macOSX_SymbolTables/SymbolTables/BOINCManager_i386
    8787   info line *0x0007210a
    8888}}}