OLD | NEW |
1 # Tips for debugging on Linux | 1 # Tips for debugging on Linux |
2 | 2 |
3 This page is for Chromium-specific debugging tips; learning how to run gdb is | 3 This page is for Chromium-specific debugging tips; learning how to run gdb is |
4 out of scope. | 4 out of scope. |
5 | 5 |
6 [TOC] | 6 [TOC] |
7 | 7 |
8 ## Symbolized stack trace | 8 ## Symbolized stack trace |
9 | 9 |
10 The sandbox can interfere with the internal symbolizer. Use `--no-sandbox` (but | 10 The sandbox can interfere with the internal symbolizer. Use `--no-sandbox` (but |
11 keep this temporary) or an external symbolizer (see | 11 keep this temporary) or an external symbolizer (see |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 [layout_tests_linux.md](layout_tests_linux.md) page. | 536 [layout_tests_linux.md](layout_tests_linux.md) page. |
537 | 537 |
538 If you need to test something with hardware accelerated compositing | 538 If you need to test something with hardware accelerated compositing |
539 (e.g., compiz), you can use `Xgl` (`sudo apt-get install xserver-xgl`). E.g.: | 539 (e.g., compiz), you can use `Xgl` (`sudo apt-get install xserver-xgl`). E.g.: |
540 | 540 |
541 Xgl :1 -ac -accel glx:pbuffer -accel xv:pbuffer -screen 1024x768 | 541 Xgl :1 -ac -accel glx:pbuffer -accel xv:pbuffer -screen 1024x768 |
542 | 542 |
543 ## Mozilla Tips | 543 ## Mozilla Tips |
544 | 544 |
545 https://developer.mozilla.org/en/Debugging_Mozilla_on_Linux_FAQ | 545 https://developer.mozilla.org/en/Debugging_Mozilla_on_Linux_FAQ |
OLD | NEW |