CLion: undefined “_get_driver_instance”

拟墨画扇 提交于 2020-01-06 02:24:09

问题


The IDE : CLion
System: OS X
Error message:

Scanning dependencies of target librarySystem
[ 66%] Building CXX object    CMakeFiles/librarySystem.dir/sqlConnection.cpp.o
[ 66%] Building CXX object CMakeFiles/librarySystem.dir/main.cpp.o
[100%] Linking CXX executable librarySystem
Undefined symbols for architecture x86_64:
  "_get_driver_instance", referenced from:
  sqlConnection::sqlConnection() in sqlConnection.cpp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see     invocation)
make[2]: *** [librarySystem] Error 1
make[1]: *** [CMakeFiles/librarySystem.dir/all] Error 2
make: *** [all] Error 2

I write a class named sqlConnection to connect mysql.

sqlConection.h

#include "sqlConnection.h"

sqlConnection::sqlConnection() {
    driver = get_driver_instance();
    con = driver->connect("567aaffa1a70e.sh.cdb.myqcloud.com:xxxx", "xxxx", "xxxx");
    con->setSchema("librarySys");
    stmt = con->createStatement();
}

bool sqlConnection::ifConnected() {

bool isConnected = false;
if(!con->isClosed()){
    std::cout << "Succeed to connect mysql";
    isConnected = true;
}else{
    std::cout << "fail to connect mysql";
}
return isConnected;
}

sqlConnection::~sqlConnection() {
delete stmt;
delete con;
}

The test in the main.cpp main.cpp

#include <iostream>
#include "sqlConnection.h"
using namespace std;

int main() {
sqlConnection *sqlC = new sqlConnection();
sqlC->ifConnected();
return 0;
}

cmakeList:

cmake_minimum_required(VERSION 3.3)
project(librarySystem)
INCLUDE_DIRECTORIES(sqlFiles/include)
INCLUDE_DIRECTORIES(sqlFiles/lib)
INCLUDE_DIRECTORIES(sqlFiles/include/cppconn)
INCLUDE_DIRECTORIES(/usr/local/lib/libmysqlcppconn.so)

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -std=c++0x")
set(SOURCE_FILES main.cpp sqlConnection.cpp sqlConnection.h)
add_executable(librarySystem ${SOURCE_FILES})

I used mysql connector-cpp to connect mysql.But the problem came.Have tried the solution on web,but they did't work.


回答1:


Struggled with the same error and I got a small example to work with this CMakeLists.txt content. Maybe it's helpful for you even if its not same versions.

cmake_minimum_required(VERSION 3.5)
project(TestCPP)

#For mysql connector include..
INCLUDE_DIRECTORIES(/mypath/mysql-connector-c++-1.1.7-osx10.10-x86-64bit/include/)

#For Boost..
INCLUDE_DIRECTORIES(/opt/local/include/)

#For imported linking..
add_library(libmysqlcppconn STATIC IMPORTED)

set_property(TARGET libmysqlcppconn PROPERTY IMPORTED_LOCATION /mypath/mysql-connector-c++-1.1.7-osx10.10-x86-64bit/lib/libmysqlcppconn-static.a)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp)

add_executable(TestCPP ${SOURCE_FILES})

target_link_libraries (TestCPP libmysqlcppconn)


来源:https://stackoverflow.com/questions/34513122/clion-undefined-get-driver-instance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!