On Tue, Aug 25, 2020, at 00:07 CDT, Johannes Blaschke <jpblasc...@lbl.gov> 
wrote:

> But I am available to work with you directly -- however I cannot debug this 
> on my own (as the cmake setup is pretty huge!).

Please have a look at the file `detailed.log` found in the build
directory. It spells out the compiler, all compile flags and the full
configured link interface. Do you see anything odd there?

Aaditya, Johannes: Another point to check quickly is whether CMake
itself does the right thing. Would you mind adding the following three
lines to the main CMakeLists.txt file and examining the output?

diff --git a/CMakeLists.txt b/CMakeLists.txt
index ab24b8f477..dce1dcac08 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -95,6 +95,10 @@ 
VERBOSE_INCLUDE(${CMAKE_SOURCE_DIR}/cmake/setup_cached_variables.cmake)
 PROJECT(deal.II CXX C)
 ENABLE_LANGUAGE_OPTIONAL(Fortran)
 
+message("Link directories: ${CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES}")
+message("Link libraries:   ${CMAKE_CXX_IMPLICIT_LINK_LIBRARIES}")
+message(FATAL_ERROR "exit")
+
 VERBOSE_INCLUDE(${CMAKE_SOURCE_DIR}/cmake/setup_deal_ii.cmake)
 
 VERBOSE_INCLUDE(${CMAKE_SOURCE_DIR}/cmake/setup_compiler_flags.cmake)


I expect that the AtpSigHandler library should be listed there.

Best,
Matthias

-- 
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 the Google Groups 
"deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/87o8mywhx9.fsf%4043-1.org.

Reply via email to