Skip to content

Commit f16a615

Browse files
authored
Update dynamic_link.md
1 parent 3a3b8d1 commit f16a615

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

docs/guide/dynamic_link.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,10 @@ name collision if the same library is being bundled by a different package, and
3333
check if the packages confirm to standards like [PEP600] (`manylinux_X_Y`).
3434
These tools do not allow to have cross wheel library dependency.
3535

36-
[auditwheel]: https://pypi.org/project/auditwheel/
37-
[delocate]: https://pypi.org/project/delocate/
38-
[delvewheel]: https://pypi.org/project/delvewheel/
39-
[cibuildwheel]: https://cibuildwheel.pypa.io/en/stable/
40-
[repair wheel]:
41-
https://cibuildwheel.pypa.io/en/stable/options/#repair-wheel-command
42-
[PEP600]: https://peps.python.org/pep-0600
43-
4436
## Manual patching
4537

46-
You can manually make a relative RPath. This has the benefit of working when not
47-
running scikit-build-core, as well.
38+
You can manually make a relative RPath. This has the benefit of working
39+
when not running scikit-build-core, as well.
4840

4941
The `RPATH` patching can be done as
5042

@@ -70,3 +62,14 @@ from pathlib import Path
7062
dependency_dll_path = Path(__file__).parent / "install_path/to/dynamic_library"
7163
os.add_dll_directory(str(dependency_dll_path))
7264
```
65+
66+
<!-- prettier-ignore-start -->
67+
68+
[auditwheel]: https://pypi.org/project/auditwheel/
69+
[delocate]: https://pypi.org/project/delocate/
70+
[delvewheel]: https://pypi.org/project/delvewheel/
71+
[cibuildwheel]: https://cibuildwheel.pypa.io/en/stable/
72+
[repair wheel]: https://cibuildwheel.pypa.io/en/stable/options/#repair-wheel-command
73+
[PEP600]: https://peps.python.org/pep-0600
74+
75+
<!-- prettier-ignore-end -->

0 commit comments

Comments
 (0)