• Programmieren
  • Cross compiling for Raspberry Pi in Windows 8

    Lots of info about Cross-Compiler can be found here http://wiki.osdev.org/GCC_Cross-Compiler So lets start with building the toolchain for building Raspberry Pi applications with crosstool-ng and the GNU Compiler. Preperations In order to compile crosstool-ng we need to install some packages in cygwin first. Run setup.exe and install the following packages gcc make bison flex gperf […]

  • Programmieren
  • Installing boost 1.54.0 c++ libraries in cygwin

    To install the latest boost library (1.54.0) download it from http://www.boost.org/ and unpack it. Also I installed the packages the packages zlib, zlib-devel, icu and libiconv to cygwin cd /usr/src wget http://downloads.sourceforge.net/project/boost/boost/1.54.0/boost_1_54_0.tar.bz2 tar jxf boost_1_54_0.tar.bz2 cd boost_1_54_0 ./booststrap.sh ./b2 –without-mpi install  Troubleshooting When running ./b2 install there is an error ./b2.exe install Performing configuration checks […]