编译自定义 c++包装sqlite3
我已经下载了 sqlite3 源代码,并且正在尝试制作一个精简的 C++ 包装器以在我的一些应用程序中使用 sqlite3。但我在 sqlite3.c 中得到了未定义引用的列表
在我的 database.hpp 中,我有 c include:外部“C”{
#include“sqlite3.h”
}
我的 makefile 如下所示:CC=gcc -g
CPP=g++ -g
CFLAGS=-c -Wall -ggdb
CPPSOURCES=$(通配符*.cpp)
CSOURCES=$(通配符 *.c)
OBJECTS=$(CPPSOURCES:.cpp=.o) $(CSOURCES:.c=.o)
EXECUTABLE=testdb
全部:$(CPPSOURCES) $(CSOURCES) $(EXECUTABLE)
$(可执行文件): $(对象)
\t $(CPP) $(OBJECTS) -o $@
.cpp.o:
<代码>\t $(CPP) $(CFLAGS) &< -o $@.co:
<代码>\t $(CC) $(CFLAGS) &< -o $@干净:
\t rm -rf *o $(EXECUTABLE)
那么我的 Makefile 中缺少什么?或者其他地方..我需要一些链接器选项吗?
TX,
积极性
I've downloaded the sqlite3 source, and am trying to make a thin c++ wrapper to use sqlite3 in some of my applications. But I get a list of undefined references in sqlite3.c
In my database.hpp, I have the c include:extern "C" {
#include "sqlite3.h"
}
My makefile looks like this:CC=gcc -g
CPP=g++ -g
CFLAGS=-c -Wall -ggdb
CPPSOURCES=$(wildcard *.cpp)
CSOURCES=$(wildcard *.c)
OBJECTS=$(CPPSOURCES:.cpp=.o) $(CSOURCES:.c=.o)
EXECUTABLE=testdb
all: $(CPPSOURCES) $(CSOURCES) $(EXECUTABLE)
$(EXECUTABLE): $(OBJECTS)
\t $(CPP) $(OBJECTS) -o $@
.cpp.o:
\t $(CPP) $(CFLAGS) &< -o $@
.c.o:
\t $(CC) $(CFLAGS) &< -o $@
clean:
\t rm -rf *o $(EXECUTABLE)
So what is missing in my Makefile? Or somewhere else .. Do I need some linker options?
tx,
aktiv
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要链接 sqlite3 库,否则它将无法工作。我没有看到任何
-l
参数。另外,您无需使用那些 .cpp.o 和 .co Makefile 命令。它们将由内置的自动规则处理。您只需要使用正确的标志变量即可。对于 C 文件,您使用 CFLAGS;对于 C++ 文件,您使用 CXXFLAGS;对于链接步骤,您通过
-l
参数提供 LDFLAGS。You need to link the sqlite3 library or it won't work. I don't see any
-l
parameters.Also, there's no need for you to use those .cpp.o and .c.o Makefile commands. They'll be handled by the built-in automatic rules. You just need to use the right flag variables. For C files you use CFLAGS, for C++ files you use CXXFLAGS, for the link step you provide LDFLAGS with your
-l
parameter.下载页面上有一个带有 makefile 的 tarball。
http://www.sqlite.org/sqlite-autoconf-3070500.tar.gz
创建库:
./configure --prefix /your/own/directory
制作
make install
在此“makefile”中将标头和库放入该目录中。
然后你就可以像 Zan 解释的那样进行链接。
On the download page there is a tarball with a makefile.
http://www.sqlite.org/sqlite-autoconf-3070500.tar.gz
To create the library:
./configure --prefix /your/own/directory
make
make install
Whit this the "makefile" puts the headers and libs in that directory.
Then you can link like Zan explains.