how to move cross compilation for ARM linux onto a board?

asked 2015-12-21 03:47:23 -0600

Ruuddb gravatar image

I have been able to make opencv using cross compilation on Ubuntu 14LTS using the instructions on github.

What should I do after make has successfully ended? I can use make install or can I? If so, what will happen and where should I copy which files to the embedded ARM system?

Regards,

Ruud

edit retag flag offensive close merge delete

Comments

In simple cases you can just copy built libraries and executable to the device and run it. Similar scheme works on OpenCV test buildbot: example build

For example, command to run OpenCV test is:

export LD_LIBRARY_PATH=lib ; export OPENCV_TEST_DATA_PATH=testdata ; ./bin/opencv_test_core
mshabunin gravatar imagemshabunin ( 2015-12-25 07:22:31 -0600 )edit