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.
我尝试使用 Lazy Foos 的教程配置 CodeBlocks(使用 gcc 4.4.1)以使用 SDL,它工作正常,所有内容都已编译、链接等。当我将编译器更改为 4.7.0 时出现问题。使用我得到的完全相同的设置:
ld.exe cannot find -lSDLmain ld.exe cannot find -lSDL
我怎样才能使这项工作?
PS:尝试使用完整路径链接库(不起作用)
不要忘记使用 -Lpath_to_your_library 指定 ld 在哪里找到库。
就像使用 -Iyour_path_to_your_headers 告诉 gcc 在哪里找到头文件一样。