Reputation: 96
I need to implement a system with a third party device using a Raspberry Pi.
The device is connected using USB, and the manufacturer has provided a few software implementation demos, and the driver library includes a C++ header file and a C shared object file compiled for i386.
I need to be able to run this driver library on the RPi. My idea is to build a C++ program I can use to get the data from the device, compile for i386, and run it with qemu-i386
. I have tried to execute this idea, but have run into some problems relating to the linking, like the executable looking for ld-linux.so.2
, which my RPi doesn't have.
How can I get this to work?
Upvotes: 1
Views: 259