I saw this as well last week on a colleague's Mac laptop. Are you on Mac as well?
In general, I don't quite know how we would address a segfault in cmake. Can
you try to find which version broke it, using bisection of the revisions
between 32901 and today?
1. cmake/configure/configure_boost.cmake :
CONFIGURE_FEATURE(BOOST)
2. cmake/macros/macro_configure_feature.cmake :
FEATURE_FIND_EXTERNAL(${_feature} FEATURE_${_feature}_EXTERNAL_FOUND)
3. cmake/macros/macro_configure_feature.cmake :
FIND_PACKAGE(${_feature})
4. cmake/macros/macro_find_package.cmake :
_FIND_PACKAGE (${_package_name} ${ARGN})
It looks almost as if _FIND_PACKAGE is calling FIND_PACKAGE recursively until the set fault occurs.
Printing, I see that ${_package_name_uppercase} = BOOST,
${ARGN} = 1.44COMPONENTSiostreamsserializationsystemthread
Also, I have tried using bundled as well as pointing to an external install, and I
get the same error each time.
Best,
-Scott
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "deal.II User Group" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dealii/AvcXabYxQo0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dealii+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Likewise! Thanks, Matthias!