Skip to content

Commit

Permalink
compat: Enable for Linux/x86{_64} by default
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed May 6, 2024
1 parent d1bdbd6 commit ffdc02d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit ffdc02d

Please sign in to comment.