解决用gcc7.3链接gtest1.7的问题
最近要在新系统中使用gcc7.3, 配套使用的gtest是1.7版本的,对于下面的程序:
#include
TEST(testSuite, ShouldSucceed) {
EXPECT_EQ(1, 1);
}
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
采用下面的命令
~/gcc/7.3.0_1/bin/g++ -std=c++11 -o g gtest_main_unittest.cc -I/gtest/1.7.0_1/include/ -L/gtest/1.7.0_1/lib/ -lgtest -lpthread
结果却发现怎么编译都不通过,一直报下面的错误:
/tmp/ccZdMeII.o: In function `testing::Assertio
共有 0 条评论