编译自定义 c++包装sqlite3

发布于 2024-10-20 20:54:25 字数 931 浏览 1 评论 0原文

我已经下载了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

断爱 2024-10-27 20:54:26

您需要链接 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.

江湖正好 2024-10-27 20:54:26

下载页面上有一个带有 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文