You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,11 +25,15 @@ consistent with the `PEP 513 manylinux1
25
25
checks the extension modules for the use of versioned symbols that exceed
26
26
the ``manylinux`` ABI.
27
27
28
-
``auditwheel repair``: copies these external shared libraries into the wheel itself, and automatically modifies the appropriate ``RPATH`` entries such that these libraries will be picked up at runtime. This accomplishes a similar result as if the libraries had been statically linked without requiring changes to the build system. Packagers are advised that bundling, like static linking, may implicate copyright concerns.
28
+
``auditwheel repair``: copies these external shared libraries into the wheel itself,
29
+
and automatically modifies the appropriate ``RPATH`` entries such that these libraries
30
+
will be picked up at runtime. This accomplishes a similar result as if the libraries had
31
+
been statically linked without requiring changes to the build system. Packagers are
32
+
advised that bundling, like static linking, may implicate copyright concerns.
29
33
30
34
31
35
Installation
32
-
-------------
36
+
------------
33
37
34
38
``auditwheel`` can be installed using pip: ::
35
39
@@ -92,8 +96,8 @@ Limitations
92
96
93
97
1. ``auditwheel`` uses the `DT_NEEDED <https://en.wikipedia.org/wiki/Direct_binding>`_
94
98
information (like ``ldd``) from the Python extension modules to determine
95
-
which system system libraries they depend on. Code that that dynamically
96
-
loads libraries at at runtime using ``ctypes`` / ``cffi`` (from Python) or
99
+
which system system libraries they depend on. Code that dynamically
100
+
loads libraries at runtime using ``ctypes`` / ``cffi`` (from Python) or
97
101
``dlopen`` (from C/C++) doesn't contain this information in a way that can
98
102
be statically determined, so dependencies that are loaded via those
99
103
mechanisms will be missed.
@@ -112,7 +116,7 @@ Limitations
112
116
Code of Conduct
113
117
---------------
114
118
115
-
Everyone interacting in the auditwheel project's codebases, issue trackers,
119
+
Everyone interacting in the ``auditwheel`` project's codebases, issue trackers,
116
120
chat rooms, and mailing lists is expected to follow the
0 commit comments