You should be able to run C++ programs in erleboard:
.cpp
, you can use vim text editor.gcc filename.cpp -o executablename
org++ filename.cpp -o executablename
executablename
. Do ./executablename
to compile it.Example:
root@erlerobot:~/C++# ls
hello.cpp
root@erlerobot:~/C++# gcc hello.cpp -o Hello
root@erlerobot:~/C++# ls
Hola hello.cpp
root@erlerobot:~/C++#
root@erlerobot:~/C++# ./Hello
Hello World!