View Single Post
  #5   Spotlight this post!  
Unread 17-01-2016, 11:14
JohnRLewis JohnRLewis is offline
Registered User
FRC #1294 (TopGun)
Team Role: Mentor
 
Join Date: Jan 2016
Rookie Year: 2015
Location: Washington
Posts: 7
JohnRLewis is an unknown quantity at this point
Re: Has anybody gotten NetworkTables to work on a RaspberryPi

I created a new super simple java app to rule out anything else. I did not add any dependencies to NetworkTables. Inside my main method, I have a single line:

System.loadLibrary("ntcore");

I thought I was getting the identical error, on closer inspection, I am getting the following now:

Exception in thread "main" java.lang.UnsatisfiedLinkError: /home/pi/libntcore.so: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /home/pi/libntcore.so)
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.jav a:1929)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java :1847)
at java.lang.Runtime.loadLibrary0(Runtime.java:870)
at java.lang.System.loadLibrary(System.java:1119)
at org.usfirst.frc.team1294.vision.Application.main(A pplication.java:14)