gpt4 book ai didi

ubuntu - SDL.h : No such file or directory

转载 作者:太空宇宙 更新时间:2023-11-03 16:51:29 33 4
gpt4 key购买 nike

我已经安装了 libsdl 1.2 -dev在我的 Ubuntu 上,但问题是它不理解 #include<SDL.h>

它说:

SDL.h: No such file or directory

但是当我输入:

kit0n@ubuntu:~$ g++ sepand.cpp -o sepand -lSDL

项目编译没有任何问题。我应该怎么做才能让 Ubuntu 理解 SDL.h?

最佳答案

The correct way是将 `sdl-config --cflags` 添加到您的 CXXFLAGS。 (您还应该将 `sdl-config --libs` 添加到您的 LIBS,即使您的情况似乎不需要它。)

从链接中解释:使用命令 sdl-config --cflags --libs 的输出用于 SDL 1.2 或 sdl2-config --cflags --libs对于 SDL2,例如:

gcc -o test test.c `sdl-config --cflags --libs`

关于ubuntu - SDL.h : No such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7785550/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com