Forked from nbulischeck/install-glibc-debug.sh
Last active
September 27, 2021 17:42
-
-
Save MUWASEC/81eaa91982230687a2f1a3e4fd9001d3 to your computer and use it in GitHub Desktop.
Install glibc debug symbols on Arch Linux for pwndbg heap analysis
This file contains hidden or 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
#!/bin/bash | |
# Install Dependencies | |
sudo pacman -S git svn gd lib32-gcc-libs patch make bison fakeroot | |
# Checkout glibc source | |
svn checkout --depth=empty svn://svn.archlinux.org/packages | |
cd packages | |
svn update glibc | |
cd glibc/repos/core-x86_64 | |
# Add current locale to locale.gen.txt | |
grep -v "#" /etc/locale.gen >> locale.gen.txt | |
# Enable debug build in PKGBUILD | |
sed -i 's#!strip#debug#' PKGBUILD | |
# Build glibc and glibc-debug packages | |
makepkg --skipchecksums --skippgpcheck | |
# Install glibc-debug | |
sudo pacman -U *.pkg.tar.* | |
sed '/^OPTIONS/ s/!debug/debug/g; /^OPTIONS/ s/strip/!strip/g' /etc/makepkg.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment