Skip to content

Instantly share code, notes, and snippets.

@ratheesh
Forked from JayKickliter/build_arm_gdb.sh
Created May 31, 2019 07:43
Show Gist options
  • Save ratheesh/88d6fa38aa43a2496194ccf4112c0687 to your computer and use it in GitHub Desktop.
Save ratheesh/88d6fa38aa43a2496194ccf4112c0687 to your computer and use it in GitHub Desktop.
Building `arm-none-eabi-gdb` with python support
#!/usr/bin/env sh
export TARGET=arm-none-eabi
export PREFIX=$HOME/.local
export PATH=$PATH:$PREFIX/bin
export VERSION=7.8.1
export GDB=gdb-$VERSION
rm -rf $GDB
# Get archives
wget http://ftp.gnu.org/gnu/gdb/$GDB.tar.gz
# Extract archives
tar xzvf $GDB.tar.gz
mkdir build-gdb
cd build-gdb
../$GDB/configure --target=$TARGET --prefix=$PREFIX --enable-interwork --enable-multilib --with-python
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment