Configuring the Application Development Environment
Embedding Python
To use Python in an embedded
project, you must build the Python virtual machine for the target. That virtual
machine is built with a cross-compiler. To build Python, you need a
cross-compiler built as explained in the previous chapter with the glibc
library, but you can’t use the uClibc C library to build the Python virtual
machine. First, obtain and download the source code:
$ wget http://www.python.org/ftp/python/<version>/Python-<version>.tgz
$ tar xzf Python-<version>.tgz





