From 303bb5ae39c24d548890430af2bacf99238bf3fc Mon Sep 17 00:00:00 2001 From: lukkuch Date: Thu, 13 Sep 2018 20:03:09 +0200 Subject: [PATCH] Update developer-guide.md Corrected Ubuntu toolchain installation guide as described in: https://discourse.odriverobotics.com/t/compile-error-make-fail-on-fresh-ubuntu-16-04-install/962/4 --- docs/developer-guide.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/developer-guide.md b/docs/developer-guide.md index 440f78ac..2a3cfde6 100644 --- a/docs/developer-guide.md +++ b/docs/developer-guide.md @@ -52,8 +52,9 @@ $ python --version # should be 3.7 or later #### Linux (Ubuntu) ```bash -sudo apt-get install gcc-arm-none-eabi -sudo apt-get install gdb-arm-none-eabi +sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa +sudo apt-get update +sudo apt-get install gcc-arm-embedded sudo apt-get install openocd sudo add-apt-repository ppa:jonathonf/tup && sudo apt-get update && sudo apt-get install tup ```