C/C++ Application Development on Device
Introduction
If you want to compile applications directly on your device, you have to install some additional tools on the device.
Installation
The device must have an active internet connection.
BASH
opkg update
# install build-essential on device
opkg install build-essential --force-depends
# install header files on device
opkg install linux-libc-headers-dev
Compiling
After Installation the commands
- make
- gcc
- g++
- etc.
are available.