diff options
| author | Marvin Scholz <epirat07@gmail.com> | 2022-11-22 23:20:05 +0100 |
|---|---|---|
| committer | Xavier Claessens <xclaesse@gmail.com> | 2022-12-06 10:59:00 -0500 |
| commit | 85a58f12f09795078b8bd2a26fce0465d46c36a2 (patch) | |
| tree | fe30c914ae0160851d951a35b700136e815146cb /docs/yaml/objects | |
| parent | cee7ecde3de4a338081d6856b4127f5dc268fb40 (diff) | |
| download | meson-85a58f12f09795078b8bd2a26fce0465d46c36a2.tar.gz | |
interpreter: compiler: Allow array for the prefix kwarg
Diffstat (limited to 'docs/yaml/objects')
| -rw-r--r-- | docs/yaml/objects/compiler.yaml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/yaml/objects/compiler.yaml b/docs/yaml/objects/compiler.yaml index e10e8fe2b..01283cdd1 100644 --- a/docs/yaml/objects/compiler.yaml +++ b/docs/yaml/objects/compiler.yaml @@ -78,13 +78,15 @@ methods: description: You have found a bug if you can see this! kwargs: prefix: - type: str + type: str | list[str] description: | Used to add `#include`s and other things that are required - for the symbol to be declared. System definitions should be - passed via compiler args (eg: `_GNU_SOURCE` is often required for - some symbols to be exposed on Linux, and it should be passed via - `args` keyword argument). + for the symbol to be declared. Since 1.0.0 an array is accepted + too. When an array is passed, the items are concatenated together + separated by a newline. + System definitions should be passed via compiler args + (eg: `_GNU_SOURCE` is often required for some symbols to be exposed + on Linux, and it should be passed via `args` keyword argument). - name: _no_builtin_args returns: void |
