You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has come up in various libraries before (bufr, upp). Need to add this to the top-level CMakeLists.txt:
if(APPLE)
# The linker on macOS does not include `common symbols` by default
# Passing the -c flag includes them and fixes an error with undefined symbols
set(CMAKE_Fortran_ARCHIVE_FINISH "<CMAKE_RANLIB> -c <TARGET>")
set(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -c <TARGET>")
endif()
The text was updated successfully, but these errors were encountered:
This has come up in various libraries before (bufr, upp). Need to add this to the top-level CMakeLists.txt:
The text was updated successfully, but these errors were encountered: