You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the compiler on my cloudtop I'm seeing this note/warning:
ninja: Entering directory `../binaryen-out/'
[223/224] Building CXX object test/gtest/CMakeFiles/binaryen-unittests.dir/type-builder.cpp.o
In file included from /usr/local/google/home/sbc/dev/wasm/binaryen/third_party/googletest/googletest/include/gtest/gtest.h:62,
from /usr/local/google/home/sbc/dev/wasm/binaryen/test/gtest/type-test.h:2,
from /usr/local/google/home/sbc/dev/wasm/binaryen/test/gtest/type-builder.cpp:2:
/usr/local/google/home/sbc/dev/wasm/binaryen/test/gtest/type-builder.cpp: In member function ‘virtual void TypeTest_TestTypeRelations_Test::TestBody()’:
/usr/local/google/home/sbc/dev/wasm/binaryen/test/gtest/type-builder.cpp:1175:8: note: variable tracking size limit exceeded with ‘-fvar-tracking-assignments’, retrying without
1175 | TEST_F(TypeTest, TestTypeRelations) {
| ^~~~~~~~
The text was updated successfully, but these errors were encountered:
The length macro used in a type test in type-builder.cpp was causing
extremely long compile times in some compilers. Use a lambda instead to
fix it. This makes the error messages less useful when a test fails, but
under normal circumstances the test should not be failing, so this is a
good trade off.
Fixes#7383.
With the compiler on my cloudtop I'm seeing this note/warning:
The text was updated successfully, but these errors were encountered: