aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc
diff options
context:
space:
mode:
authorShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2024-04-05 14:01:49 +0200
committerShyamnath Premnadh <Shyamnath.Premnadh@qt.io>2024-04-05 15:14:22 +0200
commit0202e827b8a46906179c096f090869e04a9f8909 (patch)
treeb850e423fc71e94a25cb858a10b6a39d00acc7da /sources/pyside6/doc
parent1396950daccded4b442c8a9d08aa10912a7641cf (diff)
Deployment: Doc Update
- Add considerations for dependencies Task-number: PYSIDE-1612 Pick-to: 6.7 6.7.0 Change-Id: Ib6e6bd4f616131961fa29e44e1aa0dda51b6f81c Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6/doc')
-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