Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 SDL 尝试制作各种迷你游戏,但控制台窗口始终出现在后台。我知道在 Windows 中您可以使用“-mwindows”,但我正在使用 OS X。我也没有使用 Xcode 或其他 IDE。我正在从 TextWrangler 编程并通过我的终端进行编译。是否有任何额外的链接器选项来隐藏控制台窗口?
首先,验证您main是否具有正确的签名: ,然后int main(int argc, char*argv[]),确保您从该文件中链接,然后与.#include "SDL_Main.h"#include "SDL.h"libSDLmain
main
int main(int argc, char*argv[])
#include "SDL_Main.h"
#include "SDL.h"
libSDLmain