我已经成功地使用clang编译了main.cpp,并通过如下所示的命令行选项指定了其他包含路径:clang++ -I ./Dependencies/GLFW/include/ -S .\main.cpp
。
但是,当我尝试通过以下命令指定其他链接库来链接它时:clang++ -L ./Dependencies/GLFW/lib/glfw3.lib .\main.s
它给了我一个链接器错误main-8b7c4e.o : error LNK2019: unresolved external symbol glfwInit referenced in function main
。
关于什么可能有问题的任何建议?我确信指定的相对路径是正确的,因为compile命令没有给我任何问题。
main.cpp
#include <iostream>
#include <GLFW/glfw3.h>
int main() {
glfwInit();
std::cout << "Hello world" << std::endl;
return 0;
}