Sorry for empty message, I pressed enter too early. Last update broke flann with GCC. Since it was about the patch you added, I wasn't sure about it. Anyway, this breaks GCC: -if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_COMPILER_IS_GNUCC) +if(CMAKE_SYSTEM_NAME MATCHES "Linux|FreeBSD|DragonFly" AND CMAKE_COMPILER_IS_GNUCC) add_library(flann_cpp SHARED "") set_target_properties(flann_cpp PROPERTIES LINKER_LANGUAGE CXX) target_link_libraries(flann_cpp -Wl,-whole-archive flann_cpp_s -Wl,-no-whole-archive) Removing it makes things work (and requiring newer GCC).
Created attachment 217792 [details] patch
Approved.
A commit references this bug: Author: pkubaj Date: Sun Sep 6 17:59:16 UTC 2020 New revision: 547860 URL: https://svnweb.freebsd.org/changeset/ports/547860 Log: math/flann: fix build on GCC architectures Last addition to files/patch-src_cpp_CMakeLists.txt breaks build. Also require newer GCC. PR: 249152 Approved by: yuri (maintainer) Changes: head/math/flann/Makefile head/math/flann/files/patch-src_cpp_CMakeLists.txt