Building C++ Applications |
In order to build a C++ application, do the following. After activation of the cross-build environment (. ./ACTIVATE.sh), run the following command for Cortex-M7 targets (SimpleClass.cc being the application in the below example): yur@ubuntu:~$ arm-v7-linux-uclibceabi-c++ -o SimpleClass SimpleClass.cc \ Run the application on the target (assuming /mnt is NFS-mounted to the host): / # /mnt/SimpleClass NOTE: The sample application used in this application note was downloaded from the following web site: http://www.inference.phy.cam.ac.uk/teaching/comput/C++/examples/index.shtml
|