From 42b31e424a479c4cc784480c6073913df353ac63 Mon Sep 17 00:00:00 2001 From: "T. van der Zwan" Date: Mon, 5 Jan 2015 14:35:24 +0100 Subject: [PATCH] Added extra info on cross-compiling on newer Ubuntu system Former-commit-id: 79e9dd6ebd047913b5e7c82ba7b0142fb86c79ef --- CrossCompileHowto.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CrossCompileHowto.txt b/CrossCompileHowto.txt index ac959f10..8f50445f 100644 --- a/CrossCompileHowto.txt +++ b/CrossCompileHowto.txt @@ -9,6 +9,9 @@ export RASCROSS_DIR="$HOME/raspberrypi" export HYPERION_DIR="$HOME/hyperion" sudo apt-get install git rsync cmake ia32-libs protobuf-compiler +# On newer version of Ubuntu (and maybe other distros) the ia32-libs is not available, the following +# install solved this for me (TODO: verify what is really required) +sudo apt-get install libc6:i386 libgcc1:i386 gcc-4.6-base:i386 libstdc++5:i386 libstdc++6:i386 mkdir -p "$RASCROSS_DIR/rootfs" git clone git://github.com/raspberrypi/tools.git "$RASCROSS_DIR/tools"