I am using Waf as a build tool to build a C++ library. I had earlier been using GCC 4.8.x and using std=c++98, and it was working fine
However, when I tried to change the compiler version to GCC 7.2, there were a host of issues all related to Gtest. Ex : undefined reference to `testing::internal::PrintStringTo
I would be grateful if someone could kindly share some information on how to eliminate this issue, while retaining the unit tests written through Gtest
regards, Tej