大家好
我在编译LittlevGL时候,执行make后,提示缺少SDL.h
我已经执行了
### Install SDL
You can download SDL from https://www.libsdl.org/
On Linux you can install it via terminal:
```
sudo apt-get update && sudo apt-get install -y build-essential libsdl2-dev
```
并且/usr/include/SDL2/SDL.h 也是在的,怎么提示我找不到这个文件呢?
离线
/lv_drivers/display/../../lv_drv_conf.h:101:39: fatal error: SDL2/SDL.h: No such file or directory
# define MONITOR_SDL_INCLUDE_PATH <SDL2/SDL.h>
离线
你的toolchain 可能配置有点点问题, 在 Makefile 里面手动加入 -I/usr/include/
强制搜索这个目录试一试
离线
谢谢! 问题找到了, 是我把Makefile中的CC ?= 问号被我不小心删掉了,补上就好了
你的toolchain 可能配置有点点问题, 在 Makefile 里面手动加入 -I/usr/include/
强制搜索这个目录试一试
离线