Bruno,

Yes, I'm using bash -- just the default terminal on Ubuntu 20.04. 

I've attached the output from `make VERBOSE=1` in the 
`gcc_linker_debug.txt`. 

As an added twist, when I try to compile with clang 13 (just step-40, not 
deal.II -- that's still compiled with gcc) it tries to look for a bunch of 
libraries twice: hypre, p4est, and petsc. I've also attached the output of 
`make VERBOSE=1` from the clang compilation. Note that there's a bunch of 
extraneous project stuff unrelated to the bug in both these make files.

Thanks for being patient.

- Lucas

On Thursday, January 20, 2022 at 2:20:12 PM UTC-6 bruno.t...@gmail.com 
wrote:

> Lucas,
>
> On Thursday, January 20, 2022 at 3:04:04 PM UTC-5 lucasm...@gmail.com 
> wrote:
>
>> Bruno,
>>
>> You're saying I just need to export the path before running the 
>> executable? If that is the case, it is still not working for whatever 
>> reason (still giving the linker error).
>>
>  
> Are you using bash or do you use a different shell?
>  
>
>>
>> As for two PETSc installations: I vaguely recall trying to install it to 
>> root and then quickly trying to undo it after reading the warning in the 
>> PETSc manual. I'm not sure if that caused the problem, but do you have any 
>> tips on sussing it out? That is, how do I find where in the compilation 
>> process the executable is being linked to PETSc twice? And how does cmake 
>> know that there could be two (possibly deleted) versions of PETSc? It seems 
>> like the deal.II installation knows where to find the PETSc shared library 
>> given the output of ldd (and the variables set in the detailed.log).
>>
>  
> Honestly I am not sure how to debug that. Usually it's pretty obvious that 
> there are two different versions of the library but here it looks like the 
> same library is present twice. CMake has a bunch of default paths that it 
> will search. If you install it to root, it's probably in a path that CMake 
> will search. Try `make VERBOSE=1` maybe we'll see something useful.
>
> Best,
>
> Bruno
>  
>
>> A final bit of information: the linker error only happens when I call the 
>> `distribute_local_to_global` function that has calling signature 
>> `(local_vector, local_dof_indices, global_vector)`. Both the mixed and 
>> matrix equivalent work fine, even when called together. 
>>
>> Let me know if you have any ideas about where to get started.
>>
>> - Lucas
>>
>> On Thursday, January 20, 2022 at 12:55:27 PM UTC-6 bruno.t...@gmail.com 
>> wrote:
>>
>>> Lucas,
>>>
>>> There is something strange. When you separate the function somehow your 
>>> executable depends on PETSc twice and for one of these two dependencies it 
>>> cannot find PETSc. For the other PETSc object, the code is using  
>>> /home/lucas/Application-Data/petsc/x86_64/lib/libpetsc.so.3.16 
>>> This usually happens if you have two different versions of a library 
>>> installed and CMake tries to use both. Did you install PETSc twice? Since 
>>> you only care about debugging the rest of your code, an easy and dirty way 
>>> to make the code run is to type in your terminal 
>>>
>>> export LD_LIBRARY_PATH=home/lucas/Application-Data/petsc/x86_64/lib:
>>> $LD_LIBRARY_PATH
>>>
>>> This doesn't fix the problem that there are two PETSc objects but at 
>>> least it should run.
>>>
>>> Best,
>>>
>>> Brun
>>>
>>> On Thursday, January 20, 2022 at 1:10:06 PM UTC-5 lucasm...@gmail.com 
>>> wrote:
>>>
>>>> Bruno,
>>>>
>>>> Thanks for the quick response!
>>>>
>>>> Yes, I do get the error at runtime and I am running from the terminal. 
>>>> The call in both cases is `mpirun -np 6 ./install/bin/examples/step-40`. 
>>>> The output from ldd is in the attached file.
>>>>
>>>> - Lucas
>>>>
>>>> On Thursday, January 20, 2022 at 7:54:21 AM UTC-6 bruno.t...@gmail.com 
>>>> wrote:
>>>>
>>>>> Lucas,
>>>>>
>>>>> Just to make sure, you get the error message at runtime right? Are you 
>>>>> using the same terminal in both cases? Can you show the output of ldd on 
>>>>> your executable and liddealii.so.
>>>>>
>>>>> Best,
>>>>>
>>>>> Bruno
>>>>>
>>>>> On Wednesday, January 19, 2022 at 3:27:40 PM UTC-5 lucasm...@gmail.com 
>>>>> wrote:
>>>>>
>>>>>> Hi folks,
>>>>>>
>>>>>> For debugging purposes, I need to use the 
>>>>>> `distribute_local_to_global` function which can distribute vectors and 
>>>>>> matrices separately (this guy in the docs 
>>>>>> <https://dealii.org/current/doxygen/deal.II/classAffineConstraints.html#ae02ed5ba9f1be9c34cf448a01b44abdb>).
>>>>>>  
>>>>>> However, when I try to use this one instead of the function which 
>>>>>> simultaneously distributes a vector and a matrix (this guy in the 
>>>>>> docs 
>>>>>> <https://dealii.org/current/doxygen/deal.II/classAffineConstraints.html#abe83a7964b516856f5acb8046ec63a15>)
>>>>>>  
>>>>>> it throws an `error while loading shared libraries: libpetsc.so.3.16: 
>>>>>> cannot open shared object file: No such file or directory` error. 
>>>>>>
>>>>>> For an example of the behavior, I just replaced the following on line 
>>>>>> 416 of step-40:
>>>>>>
>>>>>> // constraints.distribute_local_to_global(cell_matrix,
>>>>>> //                                       
>>>>>>                               cell_rhs,
>>>>>>  //                                       
>>>>>>                              local_dof_indices,
>>>>>> //                                                                    
>>>>>> system_matrix,
>>>>>> //                                                                    
>>>>>> system_rhs);
>>>>>> constraints.distribute_local_to_global(cell_matrix,
>>>>>>                                                                     
>>>>>> local_dof_indices,
>>>>>>                                                                     
>>>>>> system_matrix);
>>>>>>  constraints.distribute_local_to_global(cell_rhs,
>>>>>>                                                                      
>>>>>> local_dof_indices,
>>>>>>                                                                      
>>>>>> system_rhs);
>>>>>>
>>>>>> This is sort of bizarre to me because (1) it doesn't throw the error 
>>>>>> in the original tutorial case and (2) CMake ought to take care of the 
>>>>>> PETSc 
>>>>>> dependency through the deal.II target. I've attached my detailed.log 
>>>>>> file 
>>>>>> in case it's relevant.
>>>>>>
>>>>>> Any help figuring out the problem is appreciated!
>>>>>>
>>>>>> - Lucas
>>>>>>
>>>>>

-- 
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/739d0c89-8244-41e2-aed2-7d94dceded9en%40googlegroups.com.
/usr/bin/cmake -P 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles/VerifyGlobs.cmake
/usr/bin/cmake -S/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
-B/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
--check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug//CMakeFiles/progress.marks
make  -f CMakeFiles/Makefile2 all
make[1]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build.make 
src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/sphere_lebedev_rule
 /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/sphere_lebedev_rule
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build.make 
src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[  2%] Built target SphereLebedevRule
make  -f src/CMakeFiles/MaierSaupe.dir/build.make 
src/CMakeFiles/MaierSaupe.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/CMakeFiles/MaierSaupe.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/CMakeFiles/MaierSaupe.dir/build.make 
src/CMakeFiles/MaierSaupe.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'src/CMakeFiles/MaierSaupe.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[  7%] Built target MaierSaupe
make  -f src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build.make 
src/BoundaryValues/CMakeFiles/BoundaryValues.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/BoundaryValues 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues/CMakeFiles/BoundaryValues.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build.make 
src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 11%] Built target BoundaryValues
make  -f src/Postprocessors/CMakeFiles/Postprocessors.dir/build.make 
src/Postprocessors/CMakeFiles/Postprocessors.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/Postprocessors 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/Postprocessors
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/Postprocessors/CMakeFiles/Postprocessors.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/Postprocessors/CMakeFiles/Postprocessors.dir/build.make 
src/Postprocessors/CMakeFiles/Postprocessors.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/Postprocessors/CMakeFiles/Postprocessors.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 14%] Built target Postprocessors
make  -f 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build.make 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/LiquidCrystalSystems
 /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build.make 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 20%] Built target LiquidCrystalSystems
make  -f app/analysis/CMakeFiles/output-cody-data.dir/build.make 
app/analysis/CMakeFiles/output-cody-data.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/output-cody-data.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/output-cody-data.dir/build.make 
app/analysis/CMakeFiles/output-cody-data.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/output-cody-data.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 22%] Built target output-cody-data
make  -f app/analysis/CMakeFiles/compare_rhs_values.dir/build.make 
app/analysis/CMakeFiles/compare_rhs_values.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/compare_rhs_values.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/compare_rhs_values.dir/build.make 
app/analysis/CMakeFiles/compare_rhs_values.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/compare_rhs_values.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 25%] Built target compare_rhs_values
make  -f app/analysis/CMakeFiles/plot_lambda_vals.dir/build.make 
app/analysis/CMakeFiles/plot_lambda_vals.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/plot_lambda_vals.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/plot_lambda_vals.dir/build.make 
app/analysis/CMakeFiles/plot_lambda_vals.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/plot_lambda_vals.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 28%] Built target plot_lambda_vals
make  -f app/examples/CMakeFiles/atan_test.dir/build.make 
app/examples/CMakeFiles/atan_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/atan_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/atan_test.dir/build.make 
app/examples/CMakeFiles/atan_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/atan_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 31%] Built target atan_test
make  -f app/examples/CMakeFiles/bit_test.dir/build.make 
app/examples/CMakeFiles/bit_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/bit_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/bit_test.dir/build.make 
app/examples/CMakeFiles/bit_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/bit_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 34%] Built target bit_test
make  -f app/examples/CMakeFiles/dealii_function_test.dir/build.make 
app/examples/CMakeFiles/dealii_function_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/dealii_function_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/dealii_function_test.dir/build.make 
app/examples/CMakeFiles/dealii_function_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/dealii_function_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 37%] Built target dealii_function_test
make  -f app/examples/CMakeFiles/lapack_matrix_test.dir/build.make 
app/examples/CMakeFiles/lapack_matrix_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lapack_matrix_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lapack_matrix_test.dir/build.make 
app/examples/CMakeFiles/lapack_matrix_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lapack_matrix_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 40%] Built target lapack_matrix_test
make  -f app/examples/CMakeFiles/lebedev_pointer_test.dir/build.make 
app/examples/CMakeFiles/lebedev_pointer_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lebedev_pointer_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lebedev_pointer_test.dir/build.make 
app/examples/CMakeFiles/lebedev_pointer_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lebedev_pointer_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 42%] Built target lebedev_pointer_test
make  -f app/examples/CMakeFiles/lu_matrix_test.dir/build.make 
app/examples/CMakeFiles/lu_matrix_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lu_matrix_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lu_matrix_test.dir/build.make 
app/examples/CMakeFiles/lu_matrix_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lu_matrix_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 45%] Built target lu_matrix_test
make  -f app/examples/CMakeFiles/max_element.dir/build.make 
app/examples/CMakeFiles/max_element.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/max_element.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/max_element.dir/build.make 
app/examples/CMakeFiles/max_element.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/max_element.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 48%] Built target max_element
make  -f app/examples/CMakeFiles/plot_gaussian.dir/build.make 
app/examples/CMakeFiles/plot_gaussian.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_gaussian.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_gaussian.dir/build.make 
app/examples/CMakeFiles/plot_gaussian.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_gaussian.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 51%] Built target plot_gaussian
make  -f app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build.make 
app/examples/CMakeFiles/plot_uniaxial_nematic.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_uniaxial_nematic.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build.make 
app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 54%] Built target plot_uniaxial_nematic
make  -f app/examples/CMakeFiles/poisson_test.dir/build.make 
app/examples/CMakeFiles/poisson_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/poisson_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/poisson_test.dir/build.make 
app/examples/CMakeFiles/poisson_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/poisson_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 57%] Built target poisson_test
make  -f app/examples/CMakeFiles/plot_defect_configuration.dir/build.make 
app/examples/CMakeFiles/plot_defect_configuration.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_defect_configuration.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_defect_configuration.dir/build.make 
app/examples/CMakeFiles/plot_defect_configuration.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_defect_configuration.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 60%] Built target plot_defect_configuration
make  -f app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build.make 
app/examples/CMakeFiles/serialize_sparsity_pattern.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_sparsity_pattern.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build.make 
app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 62%] Built target serialize_sparsity_pattern
make  -f app/examples/CMakeFiles/high_five_example.dir/build.make 
app/examples/CMakeFiles/high_five_example.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/high_five_example.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/high_five_example.dir/build.make 
app/examples/CMakeFiles/high_five_example.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/high_five_example.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 65%] Built target high_five_example
make  -f app/examples/CMakeFiles/serialize_triangulation.dir/build.make 
app/examples/CMakeFiles/serialize_triangulation.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_triangulation.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_triangulation.dir/build.make 
app/examples/CMakeFiles/serialize_triangulation.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_triangulation.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 68%] Built target serialize_triangulation
make  -f app/examples/CMakeFiles/serialize_dof_handler.dir/build.make 
app/examples/CMakeFiles/serialize_dof_handler.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_dof_handler.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_dof_handler.dir/build.make 
app/examples/CMakeFiles/serialize_dof_handler.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_dof_handler.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 71%] Built target serialize_dof_handler
make  -f app/examples/CMakeFiles/linear_interpolation_example.dir/build.make 
app/examples/CMakeFiles/linear_interpolation_example.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/linear_interpolation_example.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/linear_interpolation_example.dir/build.make 
app/examples/CMakeFiles/linear_interpolation_example.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/linear_interpolation_example.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 74%] Built target linear_interpolation_example
make  -f app/examples/CMakeFiles/project_seg_fault.dir/build.make 
app/examples/CMakeFiles/project_seg_fault.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/project_seg_fault.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/project_seg_fault.dir/build.make 
app/examples/CMakeFiles/project_seg_fault.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/project_seg_fault.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 77%] Built target project_seg_fault
make  -f app/examples/CMakeFiles/step-40.dir/build.make 
app/examples/CMakeFiles/step-40.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/step-40.dir/DependInfo.cmake
 --color=
Dependencies file "app/examples/CMakeFiles/step-40.dir/step-40.cc.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/step-40.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target step-40
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/step-40.dir/build.make 
app/examples/CMakeFiles/step-40.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 78%] Building CXX object app/examples/CMakeFiles/step-40.dir/step-40.cc.o
cd 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 && /usr/bin/clang++-13  -isystem /usr/local/include/deal.II/bundled -isystem 
/usr/local/cuda-11.4/include -isystem 
/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi -isystem 
/usr/lib/x86_64-linux-gnu/openmpi/include -isystem 
/home/lucas/Application-Data/petsc/include -isystem 
/home/lucas/Application-Data/petsc/x86_64/include -isystem 
/home/lucas/Application-Data/p4est/FAST/include -g -std=gnu++14 -MD -MT 
app/examples/CMakeFiles/step-40.dir/step-40.cc.o -MF 
CMakeFiles/step-40.dir/step-40.cc.o.d -o CMakeFiles/step-40.dir/step-40.cc.o -c 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples/step-40.cc
[ 80%] Linking CXX executable step-40
cd 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 && /usr/bin/cmake -E cmake_link_script CMakeFiles/step-40.dir/link.txt 
--verbose=1
/usr/bin/clang++-13 -g CMakeFiles/step-40.dir/step-40.cc.o -o step-40  
-Wl,-rpath,/usr/local/lib:/home/lucas/Application-Data/p4est/FAST/lib:/usr/local/cuda-11.4/lib64:/usr/lib/x86_64-linux-gnu/openmpi/lib:/home/lucas/Application-Data/petsc/x86_64/lib:
 /usr/local/lib/libdeal_II.so 
/home/lucas/Application-Data/p4est/FAST/lib/libp4est.so 
/home/lucas/Application-Data/p4est/FAST/lib/libsc.so 
/usr/local/cuda-11.4/lib64/libcudart.so 
/usr/local/cuda-11.4/lib64/libcusparse.so 
/usr/local/cuda-11.4/lib64/libcusolver.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_cxx.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libopen-pal.so 
/usr/lib/x86_64-linux-gnu/libz.so /usr/local/lib/libboost_iostreams.so 
/usr/local/lib/libboost_serialization.so /usr/local/lib/libboost_system.so 
/usr/local/lib/libboost_thread.so /usr/local/lib/libboost_regex.so 
/usr/local/lib/libboost_chrono.so /usr/local/lib/libboost_date_time.so 
/usr/local/lib/libboost_atomic.so 
/home/lucas/Application-Data/petsc/x86_64/lib/libpetsc.so 
/home/lucas/Application-Data/petsc/x86_64/lib/libHYPRE.so 
/usr/lib/x86_64-linux-gnu/libX11.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_usempif08.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_usempi_ignore_tkr.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_mpifh.so -lgfortran -lm -lquadmath 
-ldl /usr/lib/x86_64-linux-gnu/liblapack.so 
/usr/lib/x86_64-linux-gnu/libblas.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi.so 
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 80%] Built target step-40
make  -f app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateSim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateSim.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 82%] Built target IsoSteadyStateSim
make  -f app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build.make 
app/simulations/CMakeFiles/IsoTimeDependentSim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoTimeDependentSim.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build.make 
app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 85%] Built target IsoTimeDependentSim
make  -f app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 88%] Built target IsoSteadyStateMPISim
make  -f app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build.make 
app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build.make 
app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 91%] Built target bulk_free_energy_calculation
make  -f test/CMakeFiles/main_test.dir/build.make 
test/CMakeFiles/main_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/test 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/DependInfo.cmake
 --color=
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f test/CMakeFiles/main_test.dir/build.make 
test/CMakeFiles/main_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'test/CMakeFiles/main_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[100%] Built target main_test
make[1]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
/usr/bin/cmake -E cmake_progress_start 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles
 0
/usr/bin/cmake -P 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles/VerifyGlobs.cmake
/usr/bin/cmake -S/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
-B/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
--check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug//CMakeFiles/progress.marks
make  -f CMakeFiles/Makefile2 all
make[1]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build.make 
src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/sphere_lebedev_rule
 /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/sphere_lebedev_rule
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/DependInfo.cmake
 --color=
Dependencies file 
"src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/sphere_lebedev_rule.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target SphereLebedevRule
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build.make 
src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/sphere_lebedev_rule/CMakeFiles/SphereLebedevRule.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[  2%] Built target SphereLebedevRule
make  -f src/CMakeFiles/MaierSaupe.dir/build.make 
src/CMakeFiles/MaierSaupe.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/CMakeFiles/MaierSaupe.dir/DependInfo.cmake
 --color=
Dependencies file "src/CMakeFiles/MaierSaupe.dir/LUMatrix.cpp.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/CMakeFiles/MaierSaupe.dir/compiler_depend.internal".
Dependencies file "src/CMakeFiles/MaierSaupe.dir/LagrangeMultiplier.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/CMakeFiles/MaierSaupe.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target MaierSaupe
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/CMakeFiles/MaierSaupe.dir/build.make 
src/CMakeFiles/MaierSaupe.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'src/CMakeFiles/MaierSaupe.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[  7%] Built target MaierSaupe
make  -f src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build.make 
src/BoundaryValues/CMakeFiles/BoundaryValues.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/BoundaryValues 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues/CMakeFiles/BoundaryValues.dir/DependInfo.cmake
 --color=
Dependencies file 
"src/BoundaryValues/CMakeFiles/BoundaryValues.dir/DefectConfiguration.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues/CMakeFiles/BoundaryValues.dir/compiler_depend.internal".
Dependencies file 
"src/BoundaryValues/CMakeFiles/BoundaryValues.dir/UniformConfiguration.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/BoundaryValues/CMakeFiles/BoundaryValues.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target BoundaryValues
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build.make 
src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/BoundaryValues/CMakeFiles/BoundaryValues.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 11%] Built target BoundaryValues
make  -f src/Postprocessors/CMakeFiles/Postprocessors.dir/build.make 
src/Postprocessors/CMakeFiles/Postprocessors.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/Postprocessors 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/Postprocessors
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/Postprocessors/CMakeFiles/Postprocessors.dir/DependInfo.cmake
 --color=
Dependencies file 
"src/Postprocessors/CMakeFiles/Postprocessors.dir/EvaluateFEObject.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/Postprocessors/CMakeFiles/Postprocessors.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target Postprocessors
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f src/Postprocessors/CMakeFiles/Postprocessors.dir/build.make 
src/Postprocessors/CMakeFiles/Postprocessors.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/Postprocessors/CMakeFiles/Postprocessors.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 14%] Built target Postprocessors
make  -f 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build.make 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/src/LiquidCrystalSystems
 /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/DependInfo.cmake
 --color=
Dependencies file 
"src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/IsoSteadyState.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/compiler_depend.internal".
Dependencies file 
"src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/IsoSteadyStateMPI.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/compiler_depend.internal".
Dependencies file 
"src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/IsoTimeDependent.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target LiquidCrystalSystems
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build.make 
src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'src/LiquidCrystalSystems/CMakeFiles/LiquidCrystalSystems.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 20%] Built target LiquidCrystalSystems
make  -f app/analysis/CMakeFiles/output-cody-data.dir/build.make 
app/analysis/CMakeFiles/output-cody-data.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/output-cody-data.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/analysis/CMakeFiles/output-cody-data.dir/output-cody-data.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/output-cody-data.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target output-cody-data
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/output-cody-data.dir/build.make 
app/analysis/CMakeFiles/output-cody-data.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/output-cody-data.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 22%] Built target output-cody-data
make  -f app/analysis/CMakeFiles/compare_rhs_values.dir/build.make 
app/analysis/CMakeFiles/compare_rhs_values.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/compare_rhs_values.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/analysis/CMakeFiles/compare_rhs_values.dir/compare_rhs_values.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/compare_rhs_values.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target compare_rhs_values
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/compare_rhs_values.dir/build.make 
app/analysis/CMakeFiles/compare_rhs_values.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/compare_rhs_values.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 25%] Built target compare_rhs_values
make  -f app/analysis/CMakeFiles/plot_lambda_vals.dir/build.make 
app/analysis/CMakeFiles/plot_lambda_vals.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/analysis 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/plot_lambda_vals.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/analysis/CMakeFiles/plot_lambda_vals.dir/plot_lambda_vals.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/analysis/CMakeFiles/plot_lambda_vals.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target plot_lambda_vals
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/analysis/CMakeFiles/plot_lambda_vals.dir/build.make 
app/analysis/CMakeFiles/plot_lambda_vals.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/analysis/CMakeFiles/plot_lambda_vals.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 28%] Built target plot_lambda_vals
make  -f app/examples/CMakeFiles/atan_test.dir/build.make 
app/examples/CMakeFiles/atan_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/atan_test.dir/DependInfo.cmake
 --color=
Dependencies file "app/examples/CMakeFiles/atan_test.dir/atan_test.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/atan_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target atan_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/atan_test.dir/build.make 
app/examples/CMakeFiles/atan_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/atan_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 31%] Built target atan_test
make  -f app/examples/CMakeFiles/bit_test.dir/build.make 
app/examples/CMakeFiles/bit_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/bit_test.dir/DependInfo.cmake
 --color=
Dependencies file "app/examples/CMakeFiles/bit_test.dir/bit_test.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/bit_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target bit_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/bit_test.dir/build.make 
app/examples/CMakeFiles/bit_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/bit_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 34%] Built target bit_test
make  -f app/examples/CMakeFiles/dealii_function_test.dir/build.make 
app/examples/CMakeFiles/dealii_function_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/dealii_function_test.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/dealii_function_test.dir/dealii_function_test.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/dealii_function_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target dealii_function_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/dealii_function_test.dir/build.make 
app/examples/CMakeFiles/dealii_function_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/dealii_function_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 37%] Built target dealii_function_test
make  -f app/examples/CMakeFiles/lapack_matrix_test.dir/build.make 
app/examples/CMakeFiles/lapack_matrix_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lapack_matrix_test.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/lapack_matrix_test.dir/lapack_matrix_test.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lapack_matrix_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target lapack_matrix_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lapack_matrix_test.dir/build.make 
app/examples/CMakeFiles/lapack_matrix_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lapack_matrix_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 40%] Built target lapack_matrix_test
make  -f app/examples/CMakeFiles/lebedev_pointer_test.dir/build.make 
app/examples/CMakeFiles/lebedev_pointer_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lebedev_pointer_test.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/lebedev_pointer_test.dir/lebedev_pointer_test.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lebedev_pointer_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target lebedev_pointer_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lebedev_pointer_test.dir/build.make 
app/examples/CMakeFiles/lebedev_pointer_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lebedev_pointer_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 42%] Built target lebedev_pointer_test
make  -f app/examples/CMakeFiles/lu_matrix_test.dir/build.make 
app/examples/CMakeFiles/lu_matrix_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lu_matrix_test.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/lu_matrix_test.dir/lu_matrix_test.cpp.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/lu_matrix_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target lu_matrix_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/lu_matrix_test.dir/build.make 
app/examples/CMakeFiles/lu_matrix_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/lu_matrix_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 45%] Built target lu_matrix_test
make  -f app/examples/CMakeFiles/max_element.dir/build.make 
app/examples/CMakeFiles/max_element.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/max_element.dir/DependInfo.cmake
 --color=
Dependencies file "app/examples/CMakeFiles/max_element.dir/max_element.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/max_element.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target max_element
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/max_element.dir/build.make 
app/examples/CMakeFiles/max_element.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'app/examples/CMakeFiles/max_element.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 48%] Built target max_element
make  -f app/examples/CMakeFiles/plot_gaussian.dir/build.make 
app/examples/CMakeFiles/plot_gaussian.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_gaussian.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/plot_gaussian.dir/plot_gaussian.cpp.o.d" is newer than 
depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_gaussian.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target plot_gaussian
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_gaussian.dir/build.make 
app/examples/CMakeFiles/plot_gaussian.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_gaussian.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 51%] Built target plot_gaussian
make  -f app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build.make 
app/examples/CMakeFiles/plot_uniaxial_nematic.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_uniaxial_nematic.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/plot_uniaxial_nematic.dir/plot_uniaxial_nematic.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_uniaxial_nematic.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target plot_uniaxial_nematic
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build.make 
app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_uniaxial_nematic.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 54%] Built target plot_uniaxial_nematic
make  -f app/examples/CMakeFiles/poisson_test.dir/build.make 
app/examples/CMakeFiles/poisson_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/poisson_test.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/poisson_test.dir/poisson_test.cpp.o.d" is newer than 
depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/poisson_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target poisson_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/poisson_test.dir/build.make 
app/examples/CMakeFiles/poisson_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/poisson_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 57%] Built target poisson_test
make  -f app/examples/CMakeFiles/plot_defect_configuration.dir/build.make 
app/examples/CMakeFiles/plot_defect_configuration.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_defect_configuration.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/plot_defect_configuration.dir/plot_defect_configuration.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/plot_defect_configuration.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target plot_defect_configuration
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/plot_defect_configuration.dir/build.make 
app/examples/CMakeFiles/plot_defect_configuration.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/plot_defect_configuration.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 60%] Built target plot_defect_configuration
make  -f app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build.make 
app/examples/CMakeFiles/serialize_sparsity_pattern.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_sparsity_pattern.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/serialize_sparsity_pattern.dir/serialize_sparsity_pattern.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_sparsity_pattern.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target serialize_sparsity_pattern
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build.make 
app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_sparsity_pattern.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 62%] Built target serialize_sparsity_pattern
make  -f app/examples/CMakeFiles/high_five_example.dir/build.make 
app/examples/CMakeFiles/high_five_example.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/high_five_example.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/high_five_example.dir/high_five_example.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/high_five_example.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target high_five_example
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/high_five_example.dir/build.make 
app/examples/CMakeFiles/high_five_example.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/high_five_example.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 65%] Built target high_five_example
make  -f app/examples/CMakeFiles/serialize_triangulation.dir/build.make 
app/examples/CMakeFiles/serialize_triangulation.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_triangulation.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/serialize_triangulation.dir/serialize_triangulation.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_triangulation.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target serialize_triangulation
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_triangulation.dir/build.make 
app/examples/CMakeFiles/serialize_triangulation.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_triangulation.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 68%] Built target serialize_triangulation
make  -f app/examples/CMakeFiles/serialize_dof_handler.dir/build.make 
app/examples/CMakeFiles/serialize_dof_handler.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_dof_handler.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/serialize_dof_handler.dir/serialize_dof_handler.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/serialize_dof_handler.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target serialize_dof_handler
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/serialize_dof_handler.dir/build.make 
app/examples/CMakeFiles/serialize_dof_handler.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/serialize_dof_handler.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 71%] Built target serialize_dof_handler
make  -f app/examples/CMakeFiles/linear_interpolation_example.dir/build.make 
app/examples/CMakeFiles/linear_interpolation_example.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/linear_interpolation_example.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/linear_interpolation_example.dir/linear_interpolation_example.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/linear_interpolation_example.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target 
linear_interpolation_example
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/linear_interpolation_example.dir/build.make 
app/examples/CMakeFiles/linear_interpolation_example.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/linear_interpolation_example.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 74%] Built target linear_interpolation_example
make  -f app/examples/CMakeFiles/project_seg_fault.dir/build.make 
app/examples/CMakeFiles/project_seg_fault.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/project_seg_fault.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/examples/CMakeFiles/project_seg_fault.dir/project_seg_fault.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/project_seg_fault.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target project_seg_fault
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/project_seg_fault.dir/build.make 
app/examples/CMakeFiles/project_seg_fault.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/examples/CMakeFiles/project_seg_fault.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 77%] Built target project_seg_fault
make  -f app/examples/CMakeFiles/step-40.dir/build.make 
app/examples/CMakeFiles/step-40.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/step-40.dir/DependInfo.cmake
 --color=
Dependencies file "app/examples/CMakeFiles/step-40.dir/step-40.cc.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples/CMakeFiles/step-40.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target step-40
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/examples/CMakeFiles/step-40.dir/build.make 
app/examples/CMakeFiles/step-40.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 78%] Building CXX object app/examples/CMakeFiles/step-40.dir/step-40.cc.o
cd 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 && /usr/bin/g++  -isystem /usr/local/include/deal.II/bundled -isystem 
/usr/local/cuda-11.4/include -isystem 
/usr/lib/x86_64-linux-gnu/openmpi/include/openmpi -isystem 
/usr/lib/x86_64-linux-gnu/openmpi/include -isystem 
/home/lucas/Application-Data/petsc/include -isystem 
/home/lucas/Application-Data/petsc/x86_64/include -isystem 
/home/lucas/Application-Data/p4est/FAST/include -g -std=gnu++14 -MD -MT 
app/examples/CMakeFiles/step-40.dir/step-40.cc.o -MF 
CMakeFiles/step-40.dir/step-40.cc.o.d -o CMakeFiles/step-40.dir/step-40.cc.o -c 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/examples/step-40.cc
[ 80%] Linking CXX executable step-40
cd 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/examples
 && /usr/bin/cmake -E cmake_link_script CMakeFiles/step-40.dir/link.txt 
--verbose=1
/usr/bin/g++ -g CMakeFiles/step-40.dir/step-40.cc.o -o step-40  
-Wl,-rpath,/usr/local/lib:/home/lucas/Application-Data/p4est/FAST/lib:/usr/local/cuda-11.4/lib64:/usr/lib/x86_64-linux-gnu/openmpi/lib:/home/lucas/Application-Data/petsc/x86_64/lib:
 /usr/local/lib/libdeal_II.so 
/home/lucas/Application-Data/p4est/FAST/lib/libp4est.so 
/home/lucas/Application-Data/p4est/FAST/lib/libsc.so 
/usr/local/cuda-11.4/lib64/libcudart.so 
/usr/local/cuda-11.4/lib64/libcusparse.so 
/usr/local/cuda-11.4/lib64/libcusolver.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_cxx.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libopen-pal.so 
/usr/lib/x86_64-linux-gnu/libz.so /usr/local/lib/libboost_iostreams.so 
/usr/local/lib/libboost_serialization.so /usr/local/lib/libboost_system.so 
/usr/local/lib/libboost_thread.so /usr/local/lib/libboost_regex.so 
/usr/local/lib/libboost_chrono.so /usr/local/lib/libboost_date_time.so 
/usr/local/lib/libboost_atomic.so 
/home/lucas/Application-Data/petsc/x86_64/lib/libpetsc.so 
/home/lucas/Application-Data/petsc/x86_64/lib/libHYPRE.so 
/usr/lib/x86_64-linux-gnu/libX11.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_usempif08.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_usempi_ignore_tkr.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi_mpifh.so -lgfortran -lm -lquadmath 
-ldl /usr/lib/x86_64-linux-gnu/liblapack.so 
/usr/lib/x86_64-linux-gnu/libblas.so 
/usr/lib/x86_64-linux-gnu/openmpi/lib/libmpi.so 
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 80%] Built target step-40
make  -f app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateSim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateSim.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/simulations/CMakeFiles/IsoSteadyStateSim.dir/IsoSteadyStateSim.cpp.o.d" is 
newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateSim.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target IsoSteadyStateSim
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoSteadyStateSim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 82%] Built target IsoSteadyStateSim
make  -f app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build.make 
app/simulations/CMakeFiles/IsoTimeDependentSim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoTimeDependentSim.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/simulations/CMakeFiles/IsoTimeDependentSim.dir/IsoTimeDependentSim.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoTimeDependentSim.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target IsoTimeDependentSim
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build.make 
app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoTimeDependentSim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 85%] Built target IsoTimeDependentSim
make  -f app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/IsoSteadyStateMPISim.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target IsoSteadyStateMPISim
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build.make 
app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/IsoSteadyStateMPISim.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 88%] Built target IsoSteadyStateMPISim
make  -f app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build.make 
app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/app/simulations 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations
 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/DependInfo.cmake
 --color=
Dependencies file 
"app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/bulk_free_energy_calculation.cpp.o.d"
 is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target 
bulk_free_energy_calculation
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build.make 
app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 
'app/simulations/CMakeFiles/bulk_free_energy_calculation.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[ 91%] Built target bulk_free_energy_calculation
make  -f test/CMakeFiles/main_test.dir/build.make 
test/CMakeFiles/main_test.dir/depend
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
cd /home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug && 
/usr/bin/cmake -E cmake_depends "Unix Makefiles" 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/test 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/DependInfo.cmake
 --color=
Dependencies file "test/CMakeFiles/main_test.dir/boundary_values_test.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/compiler_depend.internal".
Dependencies file "test/CMakeFiles/main_test.dir/factory_test.cpp.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/compiler_depend.internal".
Dependencies file "test/CMakeFiles/main_test.dir/iso_steady_state_test.cpp.o.d" 
is newer than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/compiler_depend.internal".
Dependencies file 
"test/CMakeFiles/main_test.dir/lagrange_multiplier_test.cpp.o.d" is newer than 
depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/compiler_depend.internal".
Dependencies file "test/CMakeFiles/main_test.dir/main_test.cpp.o.d" is newer 
than depends file 
"/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/test/CMakeFiles/main_test.dir/compiler_depend.internal".
Consolidate compiler generated dependencies of target main_test
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make  -f test/CMakeFiles/main_test.dir/build.make 
test/CMakeFiles/main_test.dir/build
make[2]: Entering directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
make[2]: Nothing to be done for 'test/CMakeFiles/main_test.dir/build'.
make[2]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
[100%] Built target main_test
make[1]: Leaving directory 
'/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug'
/usr/bin/cmake -E cmake_progress_start 
/home/lucas/Documents/research/maier-saupe-lc-hydrodynamics/build/Debug/CMakeFiles
 0

Reply via email to