'“SDL.h” no such file or directory found' when compiling

后端 未结 6 1003
情深已故
情深已故 2021-01-31 18:07

Here\'s a piece of my current Makefile:

CFLAGS = -O2 -Wall -pedantic -std=gnu++11 `sdl-config --cflags --libs` -lSDL_mixer

I have libsdl instal

6条回答
  •  情深已故
    2021-01-31 18:44

    Most times SDL is in /usr/include/SDL. If so then your #include directive is wrong, it should be #include .

    An alternative for that is adding the /usr/include/SDL directory to your include directories. To do that you should add -I/usr/include/SDL to the compiler flags...

    If you are using an IDE this should be quite easy too...

提交回复
热议问题