Undefined reference to... #21321
-
Dear MOOSE users and developers, I have an issue when compiling my application. Checking if header needs updating: /home/giovanni/projects/moose/framework/include/base/MooseRevision.h... I think it is a linking problem, but I don't know how to solve it. Giovanni |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 29 replies
-
Hello so it could be that you have an object where validParams is present in the header but not defined in the source. Usually we would get a little more information about this. Can you clean up the repo (save everything with git commit, then git clean -xfd) then try to compile again? Guillaume |
Beta Was this translation helpful? Give feedback.
-
thank you very much. Now I can run the moose sintering input files. However, in running the crow input files such as below, I hit an error regarding the "PolycrystalSinteringKernel". I found a header file for that to implement but I couldn't find any source file to make it run. I don't know if I can replace it with another kernel or not.
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hello
so it could be that you have an object where validParams is present in the header but not defined in the source. Usually we would get a little more information about this.
Can you clean up the repo (save everything with git commit, then git clean -xfd) then try to compile again?
Guillaume