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.
我正在尝试使用 c++ 中的代码块编译和运行程序。openGL 的简单示例,其中包括。当我尝试设置代码块链接器设置时,我在 /usr/include 目录中找不到 libGL.so 文件
该/usr/include目录仅用于头文件。
/usr/include
这些库是从一组标准目录(特定于发行版)中提取的,但这些是常见的:
/usr/lib /usr/lib64 /lib /lib64 /usr/local/lib /usr/local/lib64
此外,还可以ld使用-L命令行选项(IDE 通常在配置链接器设置时执行此操作)将库路径指定给链接器 ( )。
ld
-L
/usr/include仅包含头文件。
相应的库通常存储在/usr/local/lib.
/usr/local/lib