首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Maven中的GoogleTest编译错误-未定义对‘`testing::internal::MakeAndRegisterTestInfo’的引用

Maven中的GoogleTest编译错误-未定义对‘`testing::internal::MakeAndRegisterTestInfo’的引用
EN

Stack Overflow用户
提问于 2016-09-03 00:15:36
回答 1查看 835关注 0票数 3

我正在尝试用Maven进行Google测试。所以,我使用这个link安装了它。然后,我创建了用于测试的dummyTest.cpp,并将其添加到pom.xml中以执行测试。当我执行mvn clean install时,我得到了以下错误-

代码语言:javascript
复制
[INFO] 1 total files to be compiled.
[INFO] 1 total files to be compiled.
[INFO] Found 1 processors available
[INFO] Found 1 processors available
[INFO]
Starting Core 0 with 1 source files...
[INFO]
Starting Core 0 with 1 source files...
[INFO] Linking...
[INFO] Linking...
[INFO] Starting link {4.8.3 -L/usr/lib -Bdynamic -lgtest -L/usr/lib -Bdynamic -lgtest_main -Bdynamic -lpthread -fexceptions -lstdc++}
[INFO] Starting link {4.8.3 -L/usr/lib -Bdynamic -lgtest -L/usr/lib -Bdynamic -lgtest_main -Bdynamic -lpthread -fexceptions -lstdc++}
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libpthread.so when searching for -lpthread
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libpthread.so when searching for -lpthread
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libm.so when searching for -lm
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
[ERROR] /usr/bin/ld: skipping incompatible /usr/lib/libc.so when searching for -lc
[ERROR] /home/sshakya/MavenC/Recent_Backup/COE/testlibrary/target/test-nar/obj/amd64-Linux-gpp/dummyTest.o: In function `__static_initialization_and_destruction_0(int, int)':
[ERROR] dummyTest.cpp:(.text+0x1f2): undefined reference to `testing::internal::MakeAndRegisterTestInfo(char const*, char const*, char const*, char const*, testing::internal::CodeLocation, void const*, void (*)(), void (*)(), testing::internal::TestFactoryBase*)'
[ERROR] collect2: error: ld returned 1 exit status
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE

我使用的dummyTest.cpppom fileproject structure如下所示:

代码语言:javascript
复制
//
//      File:   dummyTest.cpp
//
#include "gtest/gtest.h"
TEST(dummyTest, AlwaysTrueTest) {
  EXPECT_EQ(1, 1);
}

//
//      File:   pom.xml
//
<project xmlns="http://maven.apache.org/POM/4.0.0"   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.coe</groupId>
<artifactId>testlibrary</artifactId>
<packaging>nar</packaging>
<version>1.0-SNAPSHOT</version>

<properties>
    <skipTests>false</skipTests>
    <skipDeploy>false</skipDeploy> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>   

<build>
    <defaultGoal>install</defaultGoal>
    <plugins>          
        <plugin>
            <groupId>com.github.maven-nar</groupId>
            <artifactId>nar-maven-plugin</artifactId>
            <version>3.2.3</version>
            <extensions>true</extensions>
            <configuration>
                <layout>NarLayout20</layout>
                <libraries>
                   <library>
                        <type>executable</type>
                        <run>true</run>
                    </library>
                </libraries>
                <linker>
                    <name>g++</name>
                    <sysLibs>
                        <sysLib>
                            <name>pthread</name>
                        </sysLib>
                    </sysLibs>
                     <libs>
                          <lib>
                            <name>gtest</name>
                            <type>shared</type>
                            <directory>/usr/lib/</directory>
                          </lib>
                          <lib>
                            <name>gtest_main</name>
                            <type>shared</type>
                            <directory>/usr/lib/</directory>
                          </lib>
                    </libs>
                </linker>
                <tests>
                    <test>
                      <name>dummyTest</name>
                      <link>shared</link>
                    </test>
              </tests>
            </configuration>
        </plugin>
    </plugins>
</build>

从其他博客文章和stackoverflow问答中看,我似乎是以正确的方式做到了这一点,但我不知道是什么导致了这个问题。对正确方向的任何帮助或任何提示都将不胜感激。谢谢

EN

回答 1

Stack Overflow用户

发布于 2017-11-28 22:03:35

请在搜索路径中检查gtest的冲突版本:编译期间包含的gtest.h是否与您链接到的库libgtest{,_main}包含的gtest.h相同?

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39296811

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档