Hi everyone, I am trying to use Boost library math functions in a deal.II solver program, and I am getting the following Segmentation fault and make errors when I run the program after compilation.
``` make[3]: *** [CMakeFiles/run.dir/build.make:58: CMakeFiles/run] Segmentation fault (core dumped) make[2]: *** [CMakeFiles/Makefile2:245: CMakeFiles/run.dir/all] Error 2 make[1]: *** [CMakeFiles/Makefile2:252: CMakeFiles/run.dir/rule] Error 2 make: *** [Makefile:196: run] Error 2 ``` I am running the program using the autopilot cmake available with the early beginner tutorials. The installation of Boost library is correct, and have tested the same Boost functions using a sample C++ program without deal.II. I have included the required library include files in the deal.II program and there are no compilation errors. While trying to fix this I also included ``` FIND_PACKAGE(Boost REQUIRED) ``` in the CMakeLists.txt file, although cmake found Boost successfully (-- Found Boost: /usr/lib/cmake/Boost-1.76.0/BoostConfig.cmake (found version "1.76.0")), But I still have the same Segmentation fault and make errors as above. I would be very happy to know on why the problem is arising and how can I fix it? Best wishes, Kishore -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/dealii/6550e329-94fd-4e37-b6b0-9f3e414c84fcn%40googlegroups.com.
