I had installed Julia to /usr/bin/ and preCICE is installed at the location /usr/local/lib/
Following the instructions on the readme, I have installed bindings however the tests are not working as I try test PreCICE I get the following error message:
DUMMY: Running solver dummy with preCICE config file "../solverdummy/precice-config.xml", participant name "SolverOne", and mesh name "MeshOne"
DUMMY: Running solver dummy with preCICE config file "../solverdummy/precice-config.xml", participant name "SolverTwo", and mesh name "MeshTwo"
ERROR: ERROR: LoadError: LoadError: could not load library "libprecice"
/usr/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.30' not found (required by /usr/local/lib/libprecice.so)
It seems Julia only looks at the locally installed folder not looking for the entire system (LD_LIBRARY_PATH). Locally installed versions show the same behavior.
I had installed Julia to
/usr/bin/and preCICE is installed at the location/usr/local/lib/Following the instructions on the readme, I have installed bindings however the tests are not working as I try
test PreCICEI get the following error message:It seems Julia only looks at the locally installed folder not looking for the entire system (
LD_LIBRARY_PATH). Locally installed versions show the same behavior.