在 gcc 上编译 allegro 库程序时出错

在 gcc 上编译 allegro 库程序时出错

我尝试在我的系统上安装 allegro 库。安装库时没有收到任何错误,但似乎安装过程中出现了问题。我的代码以及我在编译程序时收到的错误:

    /* testprog.c */

#include <allegro.h>

void init();
void deinit();

int main() {
init();

while (!key[KEY_ESC]) {
/* put your code here */
}

deinit();
return 0;
}
END_OF_MAIN()

void init() {
int depth, res;
allegro_init();
depth = desktop_color_depth();
if (depth == 0) depth = 32;
set_color_depth(depth);
res = set_gfx_mode(GFX_AUTODETECT_WINDOWED, 640, 480, 0, 0);
if (res != 0) {
allegro_message(allegro_error);
exit(-1);
}

install_timer();
install_keyboard();
install_mouse();
/* add other initializations here */
}

void deinit() {
clear_keybuf();
/* add other deinitializations here */
}


Errors I'm getting:

$ gcc testprog.c -o testprog `allegro-config --cflags --libs`
testprog.c: In function ‘init’:
testprog.c:26:1: warning: format not a string literal and no format arguments [-Wformat-security]
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
$

我已按照这些链接上给出的说明安装库并编译我的程序:

ubuntu上安装allegro的说明

使用 allegro 编写的程序的编译说明

答案1

allegro_message()使用格式字符串输出消息printf()

错误出现在以下行:

allegro_message(allegro_error);

更改为:

allegro_message("%s \ n", allegro_error);

相关内容