Changes between Version 10 and Version 11 of WebKitGTK/Debugging


Ignore:
Timestamp:
Apr 8, 2015 11:48:39 AM (9 years ago)
Author:
clopez@igalia.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebKitGTK/Debugging

    v10 v11  
    102102Example:
    103103{{{
    104 WEB_PROCESS_CMD_PREFIX='/usr/bin/gdbserver localhost:8080' WebKitBuild/Debug/Programs/MiniBrowser
     104WEB_PROCESS_CMD_PREFIX='/usr/bin/gdbserver localhost:8080' WebKitBuild/Debug/bin/MiniBrowser
    105105}}}
    106106and in a different terminal:
    107107{{{
    108 $ libtool --mode=execute gdb WebKitBuild/Debug/Programs/WebKitWebProcess
     108$ cd WebKitBuild/Debug
     109$ gdb -q bin/WebKitWebProcess
     110Reading symbols from bin/WebKitWebProcess...done.
    109111(gdb) target remote localhost:8080
     112(gdb) continue
    110113}}}
     114
    111115If you want to debug the network process you can use
    112116'''NETWORK_PROCESS_CMD_PREFIX''' in a similar way.