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.
我使用代码块作为我的 IDE。
我拥有完美的所有链接器设置,我拥有所有 SDL 库,当我构建调试配置时,一切正常。
我还应该提到我正在用 SDL 编译一个 dll,所以没有 main 函数。
当我尝试编译成 Release 配置时,问题就出现了。无论我做什么,我都会遇到同样的错误:
ld.exe cannot find -lSDL_main.
如果没有main功能,则无需链接SDL_main。从您的构建配置中删除它。
main