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
This is likely due to a newer GCC version. When running make I encountered:
CppND-Route-Planning-Project/thirdparty/googletest/googletest/src/gtest-death-test.cc:1287:24: error: ‘dummy’ may be used uninitialized [-Werror=maybe-uninitialized]
1287 | StackLowerThanAddress(&dummy, &result);
According to this SO post, the newer version of GCC treats this as an error.
This has been fixed upstream, so changing the submodule link from abseil/googletest.git to google/googletest.git (I think the upstream project was moved), and pulling to latest works.
This is likely due to a newer GCC version. When running
make
I encountered:According to this SO post, the newer version of GCC treats this as an error.
This has been fixed upstream, so changing the submodule link from
abseil/googletest.git
togoogle/googletest.git
(I think the upstream project was moved), and pulling to latest works.The text was updated successfully, but these errors were encountered: