aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/developer
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2025-07-11 15:08:09 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2025-07-24 12:36:48 +0200
commit62537745e984b7fa92c30ce2d16e1489fd84000f (patch)
treeaf5f037d1d536cbb0ddaef6b5e09aa7adac1e027 /sources/pyside6/doc/developer
parentd66713d3f39c04ca8d0d10d3c0762c2ef046c49c (diff)
Brush up developer documentation (extras.rst)
Pick-to: 6.9 Change-Id: I5199c2780b108aa1dacb7a3f352e3e7a2f9220b3 Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io> Reviewed-by: Ece Cinucen <ece.cinucen@qt.io>
Diffstat (limited to 'sources/pyside6/doc/developer')
-rw-r--r--sources/pyside6/doc/developer/extras.rst11
1 files changed, 7 insertions, 4 deletions
diff --git a/sources/pyside6/doc/developer/extras.rst b/sources/pyside6/doc/developer/extras.rst
index 9788b539d..1cccaad39 100644
--- a/sources/pyside6/doc/developer/extras.rst
+++ b/sources/pyside6/doc/developer/extras.rst
@@ -22,14 +22,15 @@ To test the wheels:
Build on the command line
=========================
-- Consider using ``build_scripts/qp5_tool.py``.
+- Consider using ``build_scripts/qfp_tool.py``.
Build with address sanitizer (Linux)
====================================
-ASAN needs to be told to not exit on memory leaks and its library
-needs to be pre-loaded. Assuming the library is found
-at ``/usr/lib/gcc/x86_64-linux-gnu/11``:
+`Address sanitizer <https://clang.llvm.org/docs/AddressSanitizer.html>`_
+(ASAN) needs to be told to not exit on memory leaks and its library needs to be
+pre-loaded. Assuming the library is found at
+``/usr/lib/gcc/x86_64-linux-gnu/11``:
.. code-block:: bash
@@ -37,6 +38,8 @@ at ``/usr/lib/gcc/x86_64-linux-gnu/11``:
export LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so
python setup.py build [...] --sanitize-address
+Lately, this feature has been added to MVSC, too.
+
De-Virtualize the Python Files
==============================