From a4c6c993031ae04a4b8556314323c48ea6ece7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Mon, 6 May 2024 10:08:59 +0000 Subject: [PATCH] compat: Enable for Linux/x86{,_64} by default --- compat/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/build.py b/compat/build.py index f7c92285b..5b06c1cb1 100644 --- a/compat/build.py +++ b/compat/build.py @@ -101,7 +101,7 @@ def setup(role: Role, configure_import_path(releng_location) if "auto" in compat: - compat = {"native", "emulated"} if host_os in {"windows", "macos", "ios", "tvos", "android"} else set() + compat = {"native", "emulated"} if host_os in {"windows", "macos", "linux", "ios", "tvos", "android"} else set() elif "disabled" in compat: compat = set()