Skip to content

Instantly share code, notes, and snippets.

@X547
Created July 22, 2024 15:54
Show Gist options
  • Save X547/59995d8e1163f622f46d86451f1e341e to your computer and use it in GitHub Desktop.
Save X547/59995d8e1163f622f46d86451f1e341e to your computer and use it in GitHub Desktop.
gdb-haiku configure script
#!sh
basePath="$PWD"
mkdir -p build.$(getarch)
cd build.$(getarch)
../source/configure \
--disable-nls \
--disable-binutils \
--disable-ld \
--disable-gold \
--disable-gas \
--disable-gprof \
--enable-gdb \
--enable-gdbserver \
--with-system-zlib \
--with-system-readline \
--prefix="$basePath/install.$(getarch)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment