Skip to content
Snippets Groups Projects
Commit e0958f5c authored by Administrator's avatar Administrator
Browse files

Fix a linker issue for macosx 11

Somehow /usr/loacl/lib isn'T any longer in the default link path such that
libfreetype isn't found.
parent 3e8b1e65
No related branches found
No related tags found
1 merge request!392Fix a linker issue for macosx 11
Pipeline #11445 passed
...@@ -54,6 +54,14 @@ ${Vc_LIB_DIR} ...@@ -54,6 +54,14 @@ ${Vc_LIB_DIR}
${KFParticle_LIB_DIR} ${KFParticle_LIB_DIR}
${SIMPATH}/lib ${SIMPATH}/lib
) )
# Work around linker problems on macosx 11 (Big Sur)
# Somehow libfreetype isn't properly found in /usr/local/lib
cmake_host_system_information(RESULT _OS_RELEASE QUERY OS_RELEASE)
if(APPLE AND ${_OS_RELEASE} VERSION_GREATER 11)
Message(STATUS "Fixing linker issue on macosx ${_OS_RELEASE}")
list(APPEND LINK_DIRECTORIES /usr/local/lib)
endif()
# --------------------------------------------------------- # ---------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment