-
-
Save ratheesh/88d6fa38aa43a2496194ccf4112c0687 to your computer and use it in GitHub Desktop.
Building `arm-none-eabi-gdb` with python support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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