I tried to build a linphone from the source code at https://github.com/ua3nbw-cf/linphone_arm in beaglebone black. When starting the section to build belle-sip, it stops and raises an error:
two-threaded DFA conversion
Following the solution I found, I built belle-sip and belcard which caused the error on my PC and copied the folder into beaglebone. I have tried to make adjustments to environmental changes such as the change from the directory name x86-linux-gnu
to arm-linux-gnueabihf
.
Problems arise in the share library section. On a PC, there is a link between shared libraries in other shared libraries where when viewed the file list (ls -l) appears
libbellesip.so => libbellesip.so.0
which does not appear in the beaglebone directory so I add it by removing
the existing libbellesip.so
before and add it with the command
ln -s libbellesip.so.1 libbellesip.so.
When processed using the command ./compil.sh states a reference error to bellesip_command. Anybody can help?