作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 SDL 和 smpeg 制作准系统媒体播放器。目前我唯一的代码如下:
// Header file for SDL
#include "SDL.h"
// This is the header file for the library
#include "smpeg.h"
// Link in the needed libraries
#pragma comment( lib, "sdlmain.lib")
#pragma comment( lib, "sdl.lib")
#pragma comment( lib, "smpeg.lib")
#include "SDL_Movie.h"
int main(int argc, char* argv[])
{
return 0;
}
但是,当我尝试使用以下命令编译此代码时,出现错误:
g++ sdltest.cpp `pkg-config --clflags --libs sdl2` && ./a.out
Error is: fatal error: smpeg.h: No such file or directory
我认为这是 smpeg 库的链接错误,我尝试了以下链接命令:
-lSDL2_smpeg
-lSDL_smpeg
-lsmpeg
-libsmpeg
请注意,我已经用我的包管理器安装了我认为正确的库:
sudo apt-get install libsmpeg-dev
我应该如何以不同的方式链接它?
最佳答案
在我的 Debian Stretch 盒子上 libsmpeg-dev
坚持 smpeg.h
/usr/include/smpeg/
中的标题, 不是 /usr/include/
.
所以要么传入-I/usr/include/smpeg/
至 g++
或切换到 #include <smpeg/smpeg.h>
.
参见 GCC C preprocessor documentation了解它如何搜索头文件。
关于c++ - 链接到 smpeg 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43032416/
我正在尝试使用 SDL 和 smpeg 制作准系统媒体播放器。目前我唯一的代码如下: // Header file for SDL #include "SDL.h" // This is the he
我正在尝试使用 Python3 在我的 Mac OS 10.6.8 上安装 Pygame。我正在尽力按照此处的说明进行操作:http://florian-berger.de/en/articles/i
我是一名优秀的程序员,十分优秀!