From 4c9a0fdd9b8818d57b614d46c6875a6998948909 Mon Sep 17 00:00:00 2001 From: Steven WdV Date: Tue, 10 Feb 2026 14:37:25 +0100 Subject: [PATCH] Add detect_emcc_compiler to detect_api docs --- reference/config_files/profiles.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/reference/config_files/profiles.rst b/reference/config_files/profiles.rst index a34951f4c8b9..2a60641f28df 100644 --- a/reference/config_files/profiles.rst +++ b/reference/config_files/profiles.rst @@ -826,6 +826,7 @@ the associated runtime, you can use: - ``detect_clang_compiler(compiler_exe="clang")``: Return the tuple ('clang'|'apple-clang', version, executable) for ``clang`` or ``apple-clang``. - ``detect_msvc_compiler()``: Detect the compiler ('msvc', version, None) default version of the latest VS IDE installed - ``detect_cl_compiler(compiler_exe="cl")``: Detect the compiler ('msvc', version, executable) for the ``cl.exe`` compiler + - ``detect_emcc_compiler(compiler_exe="emcc")``: Return the tuple ('emcc', version, executable) for the ``emcc`` Emscripten compiler - ``detect_sdk_version(sdk)``: Detect the Apple SDK version (``None`` for non Apple platforms), for the given ``sdk``. Equivalent to ``xcrun -sdk {sdk} --show-sdk-version``