OLD | NEW |
1 # Linux Debugging GTK | 1 # Linux Debugging GTK |
2 | 2 |
3 ## Making warnings fatal | 3 ## Making warnings fatal |
4 | 4 |
5 See | 5 See |
6 [Running GLib Applications](http://developer.gnome.org/glib/stable/glib-running.
html) | 6 [Running GLib Applications](http://developer.gnome.org/glib/stable/glib-running.
html) |
7 for notes on how to make GTK warnings fatal. | 7 for notes on how to make GTK warnings fatal. |
8 | 8 |
9 ## Using GTK Debug packages | 9 ## Using GTK Debug packages |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 GTK_MODULES=gtkparasite ./out/Debug/chrome | 47 GTK_MODULES=gtkparasite ./out/Debug/chrome |
48 | 48 |
49 ### ghardy | 49 ### ghardy |
50 | 50 |
51 If you're within the Google network on ghardy, which is too old to include | 51 If you're within the Google network on ghardy, which is too old to include |
52 gtkparasite, you can do: | 52 gtkparasite, you can do: |
53 | 53 |
54 scp bunny.sfo:/usr/lib/gtk-2.0/modules/libgtkparasite.so /tmp | 54 scp bunny.sfo:/usr/lib/gtk-2.0/modules/libgtkparasite.so /tmp |
55 sudo cp /tmp/libgtkparasite.so /usr/lib/gtk-2.0/modules/libgtkparasite.so | 55 sudo cp /tmp/libgtkparasite.so /usr/lib/gtk-2.0/modules/libgtkparasite.so |
56 | 56 |
57 ## `GDK_DEBUG` | 57 ## GDK_DEBUG |
58 | 58 |
59 Use `GDK_DEBUG=nograbs` to run GTK+ without grabs. This is useful for gdb | 59 Use `GDK_DEBUG=nograbs` to run GTK+ without grabs. This is useful for gdb |
60 sessions. | 60 sessions. |
OLD | NEW |