![]() |
Help interpreting load time error
I have started to customize the robot template for our team. I have sub-classed the SimpleRobot class to add some of our custom functions. Everything compiled and the code was downloaded into the cRIO fine. But when I rebooted the robot, at the end of the boot, it gave me the following output and I have no idea why TrcRobot is undefined. TrcRobot is my subclass of SimpleRobot. Simplified code construct is shown below. I am expecting to see compiler errors if I made mistakes. But the compiler didn't complain and instead I got load time error of undefined symbol. Can somebody tell me what it means? Thanks.
Code:
FRC_NetworkCommunication was compiled from SVN revision 2064Code:
class TrcRobot: public SimpleRobot |
Re: Help interpreting load time error
I have a few things:
Taking a second look at it, though, I thought of this: Since the undefined symbol is "_ZTV8TrcRobot.", I'd guess this is caused by neither of the above possibilities, but something involving inheritance. Put constructors in both TrcRobot and MyRobot (you only have one in MyRobot right now). The START_ROBOT_CLASS macro instantiates the class you give it, which will call not just call the base constructor SimpleRobot::SimpleRobot() but also TrcRobot::TrcRobot() and MyRobot::MyRobot(). I'm guessing that after calling the SimpleRobot constructor it looks for the TrcRobot constructor and freaks out when there isn't one. Let me know if this fixes the problem. |
Re: Help interpreting load time error
Yes, I have constructors on both MyRobot and TrcRobot (sorry that I simplified too much and did not show them in my code example). I suspect about inheritance too. So if the undefined symbol means it could not find the constructor of TrcRobot, I am puzzled because it's there. I am going to cut everything non-essential out to isolate the problem tonight and see what it is really complaining.
|
Re: Help interpreting load time error
Cool. If I can help any more, feel free to post here or PM me.
|
Re: Help interpreting load time error
Quote:
|
Re: Help interpreting load time error
I see. That makes sense now. So according to the linker error, am I missing the constructor of TrcRobot then?
|
Re: Help interpreting load time error
No... it's not the constructor. It's the vtable and the typeinfo.
If you run the tool C:\WindRiver\gnu\3.4.4-vxworks-6.3\x86-win32\bin\c++filtppc.exe and pass in the mangled name, it will tell you what it is in plain text. |
Re: Help interpreting load time error
Yes, you are right, it is the typeinfo and vtable. But what does it mean if these symbols are missing? TrcRobot is the base class of MyRobot. Why would the vtable of the TrcRobot be missing?
|
Re: Help interpreting load time error
Quote:
-Joe |
Re: Help interpreting load time error
Yes, I found it out yesterday. I thought I had an empty destructor defined but I missed that one. Thanks for the help.
|
| All times are GMT -5. The time now is 12:13. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi