display.h
#ifndef PRO_DISPLAY_H
#define PRO_DISPLAY_H
/** Initializes the display **/
int pro_display_init(void);
#endif /* PRO_DISPLAY_H */
display.c
#include "main.h"
static int height_ = 300;
static int width_ = 300;
static int bpp_ = 16;
static SDL_Surface* screen_ = NULL;
int pro_display_init(void)
{
screen_ = SDL_SetVideoMode(width_, height_, bpp_, SDL_HWSURFACE|SDL_DOUBLEBUF);
if (!screen_)
{
pro_sdl_error("Video initialization failed.");
return 0;
}
return 1;
}
main.h
#ifndef PRO_MAIN_H
#define PRO_MAIN_H
// standard headers
#include <stdlib.h>
#include <stdlib.h>
// conditional headers
#if defined(WIN32) || defined(_WIN32)
#include <windows.h>
#endif
// our own headers
#include "scripter.h"
#include "ttf_util.h"
#include "events.h"
#include "display.h"
// some macros
#define pro_error(...) fprintf(stderr, __VA_ARGS__)
#define pro_sdl_error(x) fprintf(stderr, "%s. \n=> %s\n", x, SDL_GetError())
#define pro_ttf_error(x) fprintf(stderr, "%s. \n=> %s\n", x, TTF_GetError())
#endif /* PRO_MAIN_H */
** main.c **
#include "main.h"
int main(int argc, char* argv[])
{
pro_display_init();
return 0;
}
错误:
main.c|5|undefined reference to `pro_display_init()'|
检查构建过程。确保我在gcc的输入文件中添加“display.c”。我的智慧结束了。为什么会出错?
答案 0 :(得分:1)
display.c和main.c被编译成自己的“翻译单元”。发生的事情是,当尝试解析符号名称(即查找pro_display_init
)时,C编译器认为它正在编译一个独立的.c单元。正确的方法是单独编译它们然后链接它们,例如
gcc -c display.c # creates display.o
gcc main.c display.o # compiles main.o and then link with display.o
当然,您很快就会创建/重用Makefile,以便为所有这些定义规则。
答案 1 :(得分:0)
我认为,#include“main.h”或#include“display.h”(在main.h中)“找到”错误的包含文件。检查include_path变量。