显然,我没有正确安装SDL,因为我在SDL 2.0的一些教程中找到的示例程序没有正确安装。
请注意,我使用Ubuntu 12.04作为我的操作系统,使用SDL 2.0.3源代码中的说明将其安装在我的操作系统上,使用CodeLite 5.4,并使用C作为我的编程语言。< / p>
以下是我尝试测试的代码:
#include <SDL2/SDL.h>
#include <stdio.h>
int main(int argn,char **argv)
{
if(SDL_Init(SDL_INIT_VIDEO) != 0)
{
fprintf(stderr,"Could not initialize SDL: %s\n", SDL_GetError());
}
printf("SDL Initialized\n");
SDL_Quit();
printf("SDL Shutdown\n");
return 0;
}
然而,我明白了:
/bin/sh -c 'make -j 1 -e -f Makefile'
----------Building project:[ SDL - Debug ]----------
make[1]: Entering directory `/home/user/Documents/Programming/C/SDL'
gcc -o ./Debug/SDL @"SDL.txt" -L.
./Debug/main.o: In function `main':
/home/user/Documents/Programming/C/SDL/main.c:6: undefined reference to `SDL_Init'
/home/user/Documents/Programming/C/SDL/main.c:8: undefined reference to `SDL_GetError'
/home/user/Documents/Programming/C/SDL/main.c:13: undefined reference to `SDL_Quit'
collect2: ld returned 1 exit status
make[1]: *** [Debug/SDL] Error 1
make[1]: Leaving directory `/home/user/Documents/Programming/C/SDL'
make: *** [All] Error 2
3 errors, 0 warnings
有人可以向我解释问题是什么以及如何解决它?