Changes between Version 10 and Version 11 of WebKitGTK/Debugging
- Timestamp:
- Apr 8, 2015, 11:48:39 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WebKitGTK/Debugging
v10 v11 102 102 Example: 103 103 {{{ 104 WEB_PROCESS_CMD_PREFIX='/usr/bin/gdbserver localhost:8080' WebKitBuild/Debug/ Programs/MiniBrowser104 WEB_PROCESS_CMD_PREFIX='/usr/bin/gdbserver localhost:8080' WebKitBuild/Debug/bin/MiniBrowser 105 105 }}} 106 106 and in a different terminal: 107 107 {{{ 108 $ libtool --mode=execute gdb WebKitBuild/Debug/Programs/WebKitWebProcess 108 $ cd WebKitBuild/Debug 109 $ gdb -q bin/WebKitWebProcess 110 Reading symbols from bin/WebKitWebProcess...done. 109 111 (gdb) target remote localhost:8080 112 (gdb) continue 110 113 }}} 114 111 115 If you want to debug the network process you can use 112 116 '''NETWORK_PROCESS_CMD_PREFIX''' in a similar way.