尝试链接到 SDL_ttf 共享对象文件时 g++ 中的链接器错误

问题描述 投票:0回答:1

我正在尝试在Ubuntu环境中使用SDL_ttf开发库。我首先通过以下方式下载开发库:

sudo apt-get install libsdl-ttf2.0-dev
。 接下来,我在代码中导入了头文件,如下所示:

#include <SDL_ttf.h>

当我用命令编译时:

g++ -g -I /usr/include/SDL Main.cpp -lSDL -lSDL_image -lSDL_ttf land.cpp PerlinNoise.cpp Util.cpp org.cpp Init.cpp `sdl-config --libs

我得到以下输出:

/tmp/ccpLKljA.o: In function `init()':
/home/zoo/Desktop/World-A/Util.cpp:39: undefined reference to `TTF_Init'
/home/zoo/Desktop/World-A/Util.cpp:42: undefined reference to `TTF_Quit'
/home/zoo/Desktop/World-A/Util.cpp:48: undefined reference to `TTF_OpenFont'
/home/zoo/Desktop/World-A/Util.cpp:52: undefined reference to `TTF_Quit'
collect2: ld returned 1 exit status

我知道这是一个链接器错误,但我不知道如何修复它。我知道 -lSDL_ttf 命令没有执行任何操作,因为删除它不会改变任何内容。我尝试引用 .so 文件,但这并没有改变结果。我通过命令进行了此参考:-LlibSDL_ttf-2.0.so.0.6.3。我可以查看 .so 文件,它确实包含上面列出的命令。

c++ g++ dynamic-linking
1个回答
1
投票

您必须将 land.cpp 和其余 CPP 文件放在命令行上的库之前。

© www.soinside.com 2019 - 2024. All rights reserved.