yade-users team mailing list archive
-
yade-users team
-
Mailing list archive
-
Message #03701
Re: FATAL loadPlugins error?
> 9389 FATAL yade.Omega /home/kenny/yade-0.50/core/Omega.cpp:221 loadPlugins: /home/kenny/YADE0006/lib/yade-0.50-0/plugins/libLiquidTriaxialTest.so: undefined symbol `LBdatabase::getFcap() const'
if LBdatabase is your class, then you declared getFcap method which is
not defined (in the .cpp file). If LBdatabase is from an external lib,
you need to link with that lib (either by giving SHCCFLAGS="-lsomeLib"
arg to scons, or by saying YADE_LINK_EXTRA_LIB(someLib) in the .cpp
file).
HTH, Vaclav
References