gpt4 book ai didi

c++ - 带有 CMake 的 CLion 中的 GLFW3 库导致 MacOS 上出现 undefined symbol

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:42 24 4
gpt4 key购买 nike

我在 MacOS 中使用 cmake 从源代码构建了 GLFW,一切顺利,示例正常运行。但是当我尝试在 clion 中使用 cmake 编译程序时,出现以下错误:

Scanning dependencies of target triangle
[ 50%] Building CXX object CMakeFiles/triangle.dir/main.cpp.o
[100%] Linking CXX executable triangle
Undefined symbols for architecture x86_64:
"_CFArrayAppendValue", referenced from:
__glfwInitJoysticksNS in libglfw3.a(cocoa_joystick.m.o)
_matchCallback in libglfw3.a(cocoa_joystick.m.o)
"_CFArrayCreateMutable", referenced from:
__glfwInitJoysticksNS in libglfw3.a(cocoa_joystick.m.o)
_matchCallback in libglfw3.a(cocoa_joystick.m.o)
... (There are a huge bunch of errors like this, let me know if you want to read all of them)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [triangle] Error 1
make[2]: *** [CMakeFiles/triangle.dir/all] Error 2
make[1]: *** [CMakeFiles/triangle.dir/rule] Error 2
make: *** [triangle] Error 2

我浏览了互联网和文档,发现我应该使用框架参数进行编译,如下所示:

cc -o myprog myprog.c -lglfw -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo

我在命令行上试过了,它起作用了。但是,如果我想在 CLion(或 CMake?)中完成工作,或者我如何在 CMake 中使用框架呢?

我的 CMakeLists.txt 以防你想知道:

cmake_minimum_required(VERSION 3.8)
project(triangle)

set(CMAKE_CXX_STANDARD 11)
find_package(glfw3 REQUIRED)

set(SOURCE_FILES main.cpp)
add_executable(triangle ${SOURCE_FILES})
target_link_libraries(triangle glfw3)

最佳答案

我将其添加到我的 CMakeLists.txt 中,现在可以使用了:

set(CMAKE_CXX_FLAGS "-framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo")

所以我的 CMakeLists.txt 看起来像这样:

cmake_minimum_required(VERSION 3.8)
project(triangle)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "-framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo")
find_package(glfw3 REQUIRED)

set(SOURCE_FILES main.cpp)
add_executable(triangle ${SOURCE_FILES})

target_link_libraries(triangle glfw3)

我希望有一种更“优雅”的方式,但这现在解决了我的问题。

关于c++ - 带有 CMake 的 CLion 中的 GLFW3 库导致 MacOS 上出现 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47718196/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com