[deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-07 Thread phillip mobley
Thank you wolfgang, thank you Bruno. I appreciate your input! I did look through the settings of the cmake by running make VERBOSE=1. And I did notice that the compiler/linker that was running was v6 of gcc. In my IDE, it is running v4.9. A quick change to v6 was able to solve my issue On

Re: [deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread Bruno Turcksin
2018-05-04 9:38 GMT-04:00 phillip mobley : > Doing it the normal way with cmake, step 6 is able to run properly without > any errors > You can do make VERBOSE=1 when you compile step-6 and you will see exactly which command is used to compile and link the tutorial. Then,

Re: [deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread phillip mobley
Doing it the normal way with cmake, step 6 is able to run properly without any errors On Friday, May 4, 2018 at 9:16:32 AM UTC-4, Bruno Turcksin wrote: > > Can you run step-6 if you use cmake, i.e., if you use the recommended way? > > 2018-05-04 9:06 GMT-04:00 phillip mobley

Re: [deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread Bruno Turcksin
Can you run step-6 if you use cmake, i.e., if you use the recommended way? 2018-05-04 9:06 GMT-04:00 phillip mobley : > Yes, I do get the same error for step-6. > > Also, I tried the above fixes and I am still receiving the error > > On Friday, May 4, 2018 at 9:02:05 AM

Re: [deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread phillip mobley
Yes, I do get the same error for step-6. Also, I tried the above fixes and I am still receiving the error On Friday, May 4, 2018 at 9:02:05 AM UTC-4, Bruno Turcksin wrote: > > 2018-05-04 8:53 GMT-04:00 phillip mobley >: > >> I as able to compile step-1 and run it within

[deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread phillip mobley
Hello Bruno, Thank you for the information, I will apply these to my project. I ran a test where I copied the the source code for step-1 into another project in my IDE. I have everything setup the same way as my own application. I as able to compile step-1 and run it within the IDE without

[deal.II] Re: Undefined Referece to `dealii::DataOut_DoFData<dealii::DoFHandler<2, 2>, 2, 2>::get_dataset_names[abi:cxx11]() const'

2018-05-04 Thread Bruno Turcksin
Philip, You can do what you are doing but this is really error prone. Two things that can help you: 1) don't move libdeal_II.so but add the path to your LD_LIBRARY_PATH: export LD_LIBRARY_PATH=/path/to/lib:$LD_LIBRARY_PATH 2) you want to use the flags in lib/cmake/deal.II/deal.IIConfig.cmake In