我正在尝试在 Xcode 中使用 SDL 编译项目并得到错误:
Undefined symbols for architecture x86_64:
"_main", referenced from:
-u command line option
我将 SDL.framework 与 Cocoa.framework 一起包含在 Link Binary with Libraries 中。我在项目中也有 SDLMain.h 和 SDLMain.m。
这是我的所有代码:
#include "SDLMain.h"
#include <SDL/SDL.h>
int main(int argc, const char * argv[])
{
return 0;
}