Bruno,
I apparently spoke to soon. It passed "make test" with 0 failed test. However, when I run "cmake ." in the directory of step-1 I get this output:
-- Using the deal.II-9.5.2 installation found at /usr/local
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_add_test.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_initialize_cached_variables.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_invoke_autopilot.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_pickup_tests.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_query_git_information.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_deal_ii_setup_target.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_shell_escape_option_groups.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_target_compile_flags.cmake
-- Include macro /usr/local/share/deal.II/macros/macro_target_link_flags.cmake
-- Autopilot invoked
-- Run $ make info to print a detailed help message
-- Configuring done
CMake Error in CMakeLists.txt:
Imported target "dealii::dealii_debug" includes non-existent path
"/usr/local/include/deal.II/bundled"
in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include:
* The path was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and references files it does not
provide.
-- Generating done
CMake Generate step failed. Build files cannot be regenerated correctly.
Then when I try "make" I get this:
[ 33%] Building CXX object CMakeFiles/step-1.dir/step-1.cc.o
In file included from /usr/local/include/deal.II/grid/tria.h:20,
from /home/sean/dealii-9.5.2/examples/step-1/step-1.cc:22:
/usr/local/include/deal.II/base/config.h:588:12: fatal error: mpi.h: No such file or directory
588 | # include <mpi.h>
| ^~~~~~~
compilation terminated.
make[3]: *** [CMakeFiles/step-1.dir/build.make:76: CMakeFiles/step-1.dir/step-1.cc.o] Error 1
make[2]: *** [CMakeFiles/Makefile2:90: CMakeFiles/step-1.dir/all] Error 2
make[1]: *** [CMakeFiles/Makefile2:123: CMakeFiles/run.dir/rule] Error 2
make: *** [Makefile:137: run] Error 2
I am currently recompiling with fewer jobs to see if any errors pop up or if recompiling might help.
Thanks,
Sean