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.
我在 Allegro 中制作了一个小游戏,但每次运行 .exe 文件时,它都会打开图形的 allegro 窗口以及命令行窗口,即使我没有任何可以打印的东西。
cmd窗口在游戏窗口旁边有点难看,请问有什么办法不显示吗?
这真的不是 Allegro 特有的。该行为取决于编译器的链接器设置。
在 gcc 下是:
-Wl,--subsystem,windows
对于 MSVC:
/SUBSYSTEM:WINDOWS
如果您使用 IDE,请查看链接器设置下的某处。它也可以称为“控制台”与“Windows(或 GUI)应用程序”之类的东西。你会想要后者。