diff options
Diffstat (limited to 'platform/web/detect.py')
-rw-r--r-- | platform/web/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/detect.py b/platform/web/detect.py index a39fb0ecca..043ddca65d 100644 --- a/platform/web/detect.py +++ b/platform/web/detect.py @@ -203,7 +203,7 @@ def configure(env: "Environment"): # Get version info for checks below. cc_version = get_compiler_version(env) - cc_semver = (int(cc_version["major"]), int(cc_version["minor"]), int(cc_version["patch"])) + cc_semver = (cc_version["major"], cc_version["minor"], cc_version["patch"]) if env["lto"] != "none": # Workaround https://github.com/emscripten-core/emscripten/issues/19781. |