summaryrefslogtreecommitdiff
path: root/docs/markdown/Cython.md
diff options
context:
space:
mode:
authorNathan Goldbaum <nathan.goldbaum@gmail.com>2024-07-12 10:05:45 -0700
committerEli Schwartz <eschwartz93@gmail.com>2024-07-12 13:52:55 -0400
commit4172cbd0fba77540490c370dda074f03ca4b9c33 (patch)
treeecb724a86c36042cafc7a015006aeb2f3e04715a /docs/markdown/Cython.md
parentf15963194f50c08b3bef4cbf454bb54937d1ea19 (diff)
downloadmeson-4172cbd0fba77540490c370dda074f03ca4b9c33.tar.gz
docs: mention cython_args in cython reference docs
Diffstat (limited to 'docs/markdown/Cython.md')
-rw-r--r--docs/markdown/Cython.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/markdown/Cython.md b/docs/markdown/Cython.md
index 304275043..1491dc4fc 100644
--- a/docs/markdown/Cython.md
+++ b/docs/markdown/Cython.md
@@ -32,6 +32,18 @@ py.extension_module(
)
```
+You can pass arguments accepted by the `cython` CLI script with the
+`cython_args` argument:
+
+```meson
+py.extension_module(
+ 'foo-bounds'
+ 'foo.pyx',
+ dependencies : dep_py,
+ cython_args : ['-Xboundscheck=False'],
+)
+```
+
## C++ intermediate support
*(New in 0.60.0)*