NAO Linux C++ development cheat sheet / tutorial, Part 1: better NAO than never
Preamble to this whole series of tutorial posts
I’d like to thank Jane Sun and Dimitri Merejkowsky for their kind help and feedback.
These posts start slow, but they get more technical later. The first part (which you’ve started reading) explains how to set up the C++ development environment for NAO under GNU/Linux. The second post gently introduces the build tools and a simple module. Starting from the third post, I discuss some more detailed aspects of C++ programming, and the code gets too large to be entirely pasted and explained in a blog post, and needs to be hosted elsewhere. Post 4 is still being written, but I will naturally need to make an even more drastic selection of what to explain and what to leave as an exploratory exercise for you, adventurous reader. Generally, I advise side-reading a lot of documentation(Aldebaran doc, Boost doc, C++ FAQ Lite, etc), other tutorials, and experimenting by yourself.
I assume development for NAOqi 1.14.2 on a linux host, with a robot at IP 192.168.1.11 (or something like that, it may vary a bit); adapt the examples to your own configuration. When examples depend on the Linux distribution, I give examples for both Ubuntu 12.04 LTS, which Jane is using, and Archlinux, which I use.
I assume that you are logged in Linux with the account that you want to use to develop, and that this user has the rights to at least install new software (on Ubuntu, that means that typing sudo apt-get should not tell you “operation not permitted”).
You also need a minimal knowledge of the command line: know where you are (pwd) and where your files are, navigate to a directory (cd), create a directory (mkdir). I’ll take you from there :).
</div>
Know the tools
We will also deal a little with common Unix tools like bash, ssh, scp...
Now I'll explain all this in more details.
Toolchain and environment setup
GCC, CMake
Ubuntu:sudo apt-get install gcc cmake
Archlinux:
sudo pacman -S gcc cmake
Python 2
Ubuntu:sudo apt-get install python
Archlinux:
sudo pacman -S python2
The rest
You may also want to install QT Creator as it's the IDE recommended by Aldebaran (the recommended way is to use the installer available on the Qt website, or if you can't, you can use the older version from the Ubuntu repositories with sudo apt-get install qtcreator on Ubuntu.).Then, you have to download the following files from the Aldebaran website (here with a developer account):
- NAOQI C++ SDK 1.14.2 for the architecture of your Linux development machine (32 bits or 64 bits). If you don't know if your kernel is 32 or 64 bit, type uname -m at the command line. If it replies with x86_64, you are using a 64 bit Linux. If it replies x86, 32 bit. If something else, you're kinda stuck as Aldebaran does not provide toolchains for other architectures.
- If your architecture is 64 bits, you may need to install some extra libraries for the cross-compilation to work (Dimitri from Aldebaran tells me that you no more need that, but it can't hurt).
- On Ubuntu, from the command-line, you can write:
sudo apt-get install gcc-multilib libc6-dev libc6-i386 - On Archlinux: sudo pacman -S gcc-libs-multilib
- NAOQI C++ Cross Toolchain 1.14.2 Linux 32 bits for your NAO (either NAO 3 (Geode) or NAO 4 (Atom))
- qiBuild -- There is only one choice here, but actually it's maybe not the best one :). You're better off with the development version of qiBuild that's on Github, because the one on the Aldebaran website has happened to be two years old and lack features, by the past.
- To get the latest development version of qibuild, there are several ways:
- (prefered method) install git (Ubuntu: sudo apt-get install git) and run:
cd ~/nao/devtoolsgit clone git://github.com/aldebaran/qibuild.git - (less good because keeping qibuild up to date is more difficult that way) download the zip file and unzip it in ~/nao/devtools
- Archlinux users, there is an AUR package, if you prefer.
- If you have not already made one, you should create a directory for your NAO stuff:
- mkdir -p ~/nao/{devtools,workspace}
- Navigate to you downloads folder, e.g.
- cd ~/Downloads
- Extract all the development tools that we just downloaded, for instance in ~/nao/devtools:
- if you have downloaded the zip archive of qibuild, unzip master.zip -d ~/nao/devtools
- tar xzf naoqi-sdk-1.14.2-linux??.tar.gz -C ~/nao/devtools
- tar xzf linux??-nao-atom-cross-toolchain-1.14.2.tar.gz -C ~/nao/devtools
- Install qiBuild (Ubuntu instructions):
- mkdir -p ~/.local/bin
- We need to add that directory to the $PATH environment variable, as the qiBuild binaries will be installed there. We first record that in the profile file, that is loaded at each login: echo "export PATH=\$PATH:$HOME/.local/bin" >> ~/.profile
- Now, to get the effect of that for the current login session, you can log out and in again. You can also just type export PATH=$PATH:$HOME/.local/bin in your command line to get the same effect for that terminal only
- cd ~/nao/devtools/qibuild
- ./install-qibuild.sh
- Now, try typing qibuild. If bash responds with qibuild: command not found, then there is a problem: either qibuild did not install to ~/.local/bin (ls ~/.local/bin), or ~/.local/bin is not on $PATH (echo $PATH).
- For Archlinux only (and only if you are not using qiBuild 2 from the github repo): use sed to replace all instances of " python " by " python2 " in ~/.local/bin: find ~/.local/bin/q* -type f -exec sed -i 's/python /python2 /g' {} \;
- Configure qibuild:
- cd; qibuild config --wizard
- You should normally choose:
- Unix Makefiles,
- QT Creator, followed by y
qiBuild toolchain and workspace preparation
cd ~/nao/workspace/helloword
qisrc add .
In the [next part]("http://noelusion.com/2013/NAO-C++-tutorial-part-2:-Welcome-to-the-Matrix,-NAO/"), we'll do our own C++ module that runs on the robot :D
</div>