Skip to content

Instantly share code, notes, and snippets.

@JayKickliter
Last active March 14, 2024 20:36
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save JayKickliter/8004bafaf3d365dc8fe23843fae15c67 to your computer and use it in GitHub Desktop.
Save JayKickliter/8004bafaf3d365dc8fe23843fae15c67 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