From 2e1e02e648d68004802038226f7b4b1a2849f34e Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 15 Apr 2025 14:36:32 -0700 Subject: [PATCH] Don't build binaryen tests (#1551) These seems to be some issue with building gtest on ubuntu/focal. Looks like maybe the libstdc++ is too old for it. --- emsdk.py | 1 + 1 file changed, 1 insertion(+) diff --git a/emsdk.py b/emsdk.py index abf1ecc..f01ebf5 100644 --- a/emsdk.py +++ b/emsdk.py @@ -1315,6 +1315,7 @@ def build_binaryen_tool(tool): # Configure cmake_generator, args = get_generator_and_config_args(tool) args += ['-DENABLE_WERROR=0'] # -Werror is not useful for end users + args += ['-DBUILD_TESTS=0'] # We don't want to build or run tests if 'Visual Studio' in CMAKE_GENERATOR: if BUILD_FOR_TESTING: