summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-04-14 09:21:41 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-04-14 09:21:41 +0200
commit34cde7c658208c3782155a7b291918d982b85c77 (patch)
tree98d65bcc61594e0d09386b5932bf65d7eb1d016f
parentb03e157de151f35aaab3246c094685c192c7a278 (diff)
downloadcython-34cde7c658208c3782155a7b291918d982b85c77.tar.gz
Mention "cython_freeze" in the embedding docs page.
-rw-r--r--docs/src/tutorial/embedding.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/src/tutorial/embedding.rst b/docs/src/tutorial/embedding.rst
index e296f1296..19d9581d6 100644
--- a/docs/src/tutorial/embedding.rst
+++ b/docs/src/tutorial/embedding.rst
@@ -13,7 +13,9 @@ This is a stub documentation page. PRs welcome.
* `Cython Wiki <https://github.com/cython/cython/wiki/EmbeddingCython>`_
* See the ``--embed`` option to the ``cython`` and ``cythonize`` frontends
- for generating a C main function.
+ for generating a C main function and the
+ `cython_freeze <https://github.com/cython/cython/blob/master/bin/cython_freeze>`_
+ script for merging multiple extension modules into one library.
* `Embedding demo program <https://github.com/cython/cython/tree/master/Demos/embed>`_