aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2024-04-05 14:01:49 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-04-05 15:13:51 +0000
commit426c8aa8bb422fdc08c69ebafbba3a574fd7ac40 (patch)
tree386b372d29221db7e4f51bc64987216e1d3510d5
parentea221501ca9aa66424024ba05a15dfcebfa2bfce (diff)
Deployment: Doc Update
- Add considerations for dependencies Task-number: PYSIDE-1612 Change-Id: Ib6e6bd4f616131961fa29e44e1aa0dda51b6f81c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> (cherry picked from commit 0202e827b8a46906179c096f090869e04a9f8909) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit c9b0cb18c1d3605ae4363a352a55b7e07c08b82a)
-rw-r--r--sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst22
1 files changed, 22 insertions, 0 deletions
diff --git a/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst b/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst
index 8c5af3db4..980fe2dd1 100644
--- a/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst
+++ b/sources/pyside6/doc/deployment/deployment-pyside6-deploy.rst
@@ -193,3 +193,25 @@ Here are all the command line options of ``pyside6-deploy``:
* **--extra-modules**: Comma-separated list of Qt modules to be added to the application,
in case they are not found automatically. The module name can either be specified
by omitting the prefix of Qt or including it eg: both Network and QtNetwork works.
+
+Considerations
+===============
+
+For deployment to work efficiently by bundling only the necessary plugins, the following utilities
+are required to be installed on the system:
+
+.. list-table::
+ :header-rows: 1
+
+ * - OS
+ - Dependencies
+ - Installation
+ * - Windows
+ - dumpbin
+ - Shipped with MSVC. Run `vcvarsall.bat` to add it to PATH
+ * - Linux
+ - readelf
+ - Available by default
+ * - macOS
+ - dyld_info
+ - Available by default from macOS 12 and upwards