blob: 2b148e65715693a869a6200e0cf51b6a1085e2c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- disable binaryen version checking
--- tools/building.py.orig 2025-01-03 00:10:44 UTC
+++ tools/building.py
@@ -1169,7 +1169,7 @@ def check_binaryen(bindir):
# Allow the expected version or the following one in order avoid needing to update both
# emscripten and binaryen in lock step in emscripten-releases.
- if version not in (EXPECTED_BINARYEN_VERSION, EXPECTED_BINARYEN_VERSION + 1):
+ if False and version not in (EXPECTED_BINARYEN_VERSION, EXPECTED_BINARYEN_VERSION + 1):
diagnostics.warning('version-check', 'unexpected binaryen version: %s (expected %s)', version, EXPECTED_BINARYEN_VERSION)
|