aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/developer/extras.rst
blob: 9788b539d687a2d2ed7cba9acd35e5560431116b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Test a wheel
============

There is a tool that you can use to test a set of wheels called 'testwheel' but
it's currently in a different repository (``qt/qtqa``):

- Use ``scripts/packagetesting/testwheel.py`` from the
  `qtqa repository <https://code.qt.io/cgit/qt/qtqa.git>`_.

To test the wheels:

- Create a virtual environment and activate it.
- Install the dependencies listed on the ``requirements.txt`` file.
- Install all the wheels: ``shiboken6``, ``shiboken6-generator``,
  and ``PySide6-Essentials``.
- Run the ``testwheel`` tool.
- Install ``PySide6-Addons`` wheels.
- Run again the ``testwheel`` tool.
- In case you have access to commercial wheels, don't forget the
  ``PySide6-M2M`` as well, and re-run the ``testwheel`` tool.

Build on the command line
=========================

- Consider using ``build_scripts/qp5_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``:

.. code-block:: bash

    export ASAN_OPTIONS=detect_leaks=0
    export LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so
    python setup.py build [...] --sanitize-address

De-Virtualize the Python Files
==============================

The Python files in the Shiboken module are completely virtual, i.E.
they are nowhere existent in the file system for security reasons.

For debugging purposes or to change something, it might be desirable
to move these files into the normal file system, again.

- Setting the environment variable "SBK_EMBED" once to false unpacks these
  files when PySide6 or shiboken6 are imported. The files are written
  into "side-packages/shiboken6/files.dir" and are used from then on.

- Setting the variable to true removes "files.dir".

- Without the "SBK_EMBED" variable, the embedding status remains sticky.