Quote:
Originally Posted by AustinSchuh
Unfortunately, I can't... I have been using custom linux based build environments and unsupported GCC cross compilers that I built myself for years. Hopefully someone else will be able to take my diagnostic and help you figure out what to do with it with WindRiver...
Conceptually, you want to add WPILib.a to the link command. Not sure the magic key strokes to do that.
My guess is that the following diff to your .wrproject did it.
Code:
- <listAttribute key="BLD::Info|Libs|PPC32diab">
- <stringAttribute value="$(WIND_BASE)/target/lib/WPILib.a"/>
- </listAttribute>
- <listAttribute key="BLD::Info|Libs|PPC603gnu">
- <stringAttribute value="$(WIND_BASE)/target/lib/WPILib.a"/>
- </listAttribute>
|
Hey Austin, thank you so much for your help. I'm one of the other head programmers for the team and I got it to work by getting onto the IDE and adding WPILib.a file to the library from the project settings. I'll post exact instructions for other when I get back into robotics in a few days.
Also nowadays is there an easy way to compile directly with Linux(specifically Debian or Arch Linux)? Or would I have to go ahead and write up a custom environment too?