diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /tools/sanitizer/docs | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-upstream/125.0.1.tar.xz firefox-upstream/125.0.1.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/sanitizer/docs')
-rw-r--r-- | tools/sanitizer/docs/tsan.rst | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/sanitizer/docs/tsan.rst b/tools/sanitizer/docs/tsan.rst index 77fb6c89d7..af7ebc0b2b 100644 --- a/tools/sanitizer/docs/tsan.rst +++ b/tools/sanitizer/docs/tsan.rst @@ -167,6 +167,23 @@ After the build has completed, ``./mach run`` with the usual options for running in a debugger (``gdb``, ``lldb``, ``rr``, etc.) work fine, as do the ``--disable-e10s`` and other options. +While running Firefox, ensure that it's not in safe mode since it might cause +some tsan failures during startup. You can use a different profile or add +``--temp-profile`` to use a temporary one. + +Firefox might crash on startup if you have an NVIDIA GPU with proprietary +drivers. To fix this, disable the graphics acceleration by changing the following +prefs: + +- ``gfx.x11-egl.force-disabled=true`` +- ``gfx.webrender.software.opengl=true`` +- ``layers.acceleration.disabled=true`` + +You can either do this by passing these prefs to your ``./mach run`` command +like this: ``./mach run --setpref "gfx.x11-egl.force-disabled=true" --setpref "gfx.webrender.software.opengl=true" --setpref "layers.acceleration.disabled=true"`` +or you can add them to your ``machrc`` file. Learn more about mach settings +:ref:`here<mach_settings>`. + Building only the JavaScript shell ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |