Skip to content

Add missing feature tags threads and nothreads in documentation table #11130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tutorials/export/feature_tags.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ Here is a list of most feature tags in Godot. Keep in mind they are **case-sensi
+--------------------+----------------------------------------------------------+
| **web** | Host OS is a Web browser |
+--------------------+----------------------------------------------------------+
| **nothreads** | Running without threading support |
+--------------------+----------------------------------------------------------+
| **threads** | Running with threading support |
+--------------------+----------------------------------------------------------+
| **web_android** | Host OS is a Web browser running on Android |
+--------------------+----------------------------------------------------------+
| **web_ios** | Host OS is a Web browser running on iOS |
Expand Down
10 changes: 10 additions & 0 deletions tutorials/scripting/gdextension/gdextension_file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ Here is an example of what that can look like:
linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"


Entries are matched in order, so if two sets of feature tags could match
the same system, be sure to put the more specific ones first:

.. code-block:: none

[libraries]

linux.release.editor.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
linux.release.x86_64 = "res://bin/libgdexample.linux.noeditor.template_release.x86_64.so"

Here are lists of some of the available built-in options (for more look at the :ref:`feature tags <doc_feature_tags>`):

Running system
Expand Down
Loading