Skip to content

Commit 471ad88

Browse files
authored
Merge pull request #11130 from leandro-benedet-garcia/tags-update
Add missing feature tags `threads` and `nothreads` in documentation table
2 parents 98812ba + 97f5aad commit 471ad88

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

tutorials/export/feature_tags.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ Here is a list of most feature tags in Godot. Keep in mind they are **case-sensi
108108
+--------------------+----------------------------------------------------------+
109109
| **web** | Host OS is a Web browser |
110110
+--------------------+----------------------------------------------------------+
111+
| **nothreads** | Running without threading support |
112+
+--------------------+----------------------------------------------------------+
113+
| **threads** | Running with threading support |
114+
+--------------------+----------------------------------------------------------+
111115
| **web_android** | Host OS is a Web browser running on Android |
112116
+--------------------+----------------------------------------------------------+
113117
| **web_ios** | Host OS is a Web browser running on iOS |

tutorials/scripting/gdextension/gdextension_file.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,16 @@ Here is an example of what that can look like:
6666
linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
6767
6868
69+
Entries are matched in order, so if two sets of feature tags could match
70+
the same system, be sure to put the more specific ones first:
71+
72+
.. code-block:: none
73+
74+
[libraries]
75+
76+
linux.release.editor.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
77+
linux.release.x86_64 = "res://bin/libgdexample.linux.noeditor.template_release.x86_64.so"
78+
6979
Here are lists of some of the available built-in options (for more look at the :ref:`feature tags <doc_feature_tags>`):
7080

7181
Running system

0 commit comments

Comments
 (0)