undefined reference to `glfwInit‘

it2024-11-01  5

在编译使用libglfw库的应用程序时候遇到如下问题: /usr/bin/ld: /tmp/ccuKE59E.o: in function main': main.cpp:(.text+0x18): undefined reference toglfwInit’ /usr/bin/ld: main.cpp:(.text+0x27): undefined reference to glfwWindowHint' /usr/bin/ld: main.cpp:(.text+0x48): undefined reference toglfwCreateWindow’ /usr/bin/ld: main.cpp:(.text+0x69): undefined reference to vkEnumerateInstanceExtensionProperties' /usr/bin/ld: main.cpp:(.text+0xb0): undefined reference toglfwWindowShouldClose’ /usr/bin/ld: main.cpp:(.text+0xbe): undefined reference to glfwPollEvents' /usr/bin/ld: main.cpp:(.text+0xcc): undefined reference toglfwDestroyWindow’ /usr/bin/ld: main.cpp:(.text+0xd1): undefined reference to `glfwTerminate’ 命令行如下:

g++ -std=c++17 -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi -o VulkanTest main.cpp

最后经过排查是由于传入g++编译器是的顺序导致的,需要将main.cpp紧跟在g++后面,改成如下:

g++ main.cpp -std=c++17 -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi -o VulkanTest

这是由于g++的链接顺序是从右到左查找链接的,当把main.cpp放在最右边时,会第一个处理此文件,此时还没有链接glfw库,所以报错提示找不到glfwInit等glfw库中的函数。

最新回复(0)