C++ 编译问题,sqlite3
Posted
技术标签:
【中文标题】C++ 编译问题,sqlite3【英文标题】:C++ Compile issues, sqlite3 【发布时间】:2015-01-28 12:55:51 【问题描述】:我正在尝试编译一个使用 sqlite3 的 C++ 程序。我正在使用这个makefile:
CXX = g++
CC = gcc
CFLAGS = -c -O2
CXXFLAGS = -Wall -O3 -std=c++11
SQLFLAGS = -DSQLITE_THREADSAFE=0
OUTPUTBIN = bot
OUTPUTDIR = ./bin/
MKDIR = mkdir -p $(OUTPUTDIR)
OBJECTC = sqlite3.o
CSOURCES = sqlite3.c
CXXSOURCES = main.cpp bot.cpp
all: project
project: createdir sql compilecpp
createdir:
$(MKDIR)
sql:
$(CC) $(CSOURCES) $(SQLFLAGS) $(CFLAGS) -o $(OUTPUTDIR)$(OBJECTC)
compilecpp:
$(CXX) $(OUTPUTDIR)$(OBJECTC) $(CXXSOURCES) $(CXXFLAGS) -o $(OUTPUTDIR)$(OUTPUTBIN)
但输出这些错误:
akf@akf-v5 ~/Documents/Proletarian/c++ $ make
mkdir -p ./bin/
gcc sqlite3.c -DSQLITE_THREADSAFE=0 -c -O2 -o ./bin/sqlite3.o
g++ ./bin/sqlite3.o main.cpp bot.cpp -Wall -O3 -std=c++11 -o ./bin/bot
./bin/sqlite3.o: In function `unixDlError':
sqlite3.c:(.text+0x170f4): undefined reference to `dlerror'
./bin/sqlite3.o: In function `unixDlClose':
sqlite3.c:(.text+0x5de9): undefined reference to `dlclose'
./bin/sqlite3.o: In function `unixDlSym':
sqlite3.c:(.text+0x5e01): undefined reference to `dlsym'
./bin/sqlite3.o: In function `unixDlOpen':
sqlite3.c:(.text+0x5e21): undefined reference to `dlopen'
collect2: error: ld returned 1 exit status
make: *** [compilecpp] Error 1
我对造成这种情况的原因感到非常困惑。我可以看到 sqlite3 是一个 C 程序,但我认为它不会引起任何问题。
【问题讨论】:
将-ldl
添加到您的链接器命令行。
谷歌搜索 dlerror undefined symbol
返回 ***.com/questions/956640/… 作为第一次点击。
谢谢你们,@CiaPan 我也发现了这个,但我不确定如何将它添加到我的 makefile 或者它是否与我的问题相关。我是 C++ 新手,这可能是最重要的问题。
【参考方案1】:
错误消息表明dlerror
、dlclose
、dlsym
和dlopen
已使用但找不到。这些函数是动态链接加载器的一部分。您也必须链接动态链接器。将-ldl
添加到您的链接标志。对于您的系统,另请参阅 dlopen manpage。
【讨论】:
这看起来很完美,我刚刚阅读了它,谢谢。唯一的问题是,我不确定要在 makefile 中放置什么?我把它放在哪里重要吗?我是 makefile 的新手,很抱歉很痛苦 最简单的方法是将它添加到 compilecpp 目标中的 CXX 调用中,Makefile 有很大的改进空间(不过,我会把它告诉其他更了解那里的最佳实践的人) 完美,谢谢。我错误地把它和sql放在一起。看来我最需要睡觉了!【参考方案2】:有点晚了,但是 - 最简单的 Makefile:
all: sqlite3
sqlite3: sqlite3.o shell.o
gcc sqlite3.o shell.o -lpthread -ldl -o sqlite3
sqlite3.o: sqlite3.c sqlite3.h
gcc -c sqlite3.c -lpthread -ldl -o sqlite3.o
shell.o: shell.c
gcc -c shell.c -lpthread -o shell.o
clean:
rm *.o
rm sqlite3
【讨论】:
以上是关于C++ 编译问题,sqlite3的主要内容,如果未能解决你的问题,请参考以下文章
交叉编译Python-2.7.13到ARM(aarch32)—— 支持sqlite3
在不安装sqlite3的时候使用sqlite3数据库以及问题/usr/bin/ld: skipping incompatible.....的解决