我正在尝试使用GCC编译这段代码:
#include <glad/glad.h>
#include <GLFW/glfw3.h>
int main(){
return 0;
}
我正在关注此guide。正如向导所说,我去https://glad.dav1d.de/并感到高兴。我将glad
和KHR
包含文件夹放在我的/usr/include
文件夹中,并将glad.c
放在我拥有这段代码的文件夹中。
这是我要用来编译代码的命令:
gcc test.cpp -o test -lglad -lglfw
我收到此编译错误
/usr/bin/ld: cannot find -lglad
collect2: error: ld returned 1 exit status
答案 0 :(得分:0)
结果是,您可以使用进行编译
gcc test.cpp glad.c -o test -lglfw