From 4f670845ff9ab6c48bcb5f7bf4d4ef6dc3c3064b Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 27 Mar 2012 11:51:08 +0200 Subject: reorganize file structure to match the upstream requirements --- pintos-progos/utils/pintos-gdb | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 pintos-progos/utils/pintos-gdb (limited to 'pintos-progos/utils/pintos-gdb') diff --git a/pintos-progos/utils/pintos-gdb b/pintos-progos/utils/pintos-gdb deleted file mode 100755 index 9c9555b..0000000 --- a/pintos-progos/utils/pintos-gdb +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh - -# Path to GDB macros file. Customize for your site. -PINTOS_SRC="$(dirname $(dirname $(which pintos-gdb)))" -GDBMACROS="${PINTOS_SRC}/misc/gdb-macros" - -# Choose correct GDB. -if command -v i386-elf-gdb >/dev/null 2>&1; then - GDB=i386-elf-gdb -else - GDB=gdb -fi - -# Run GDB. -if test -f "$GDBMACROS"; then - exec $GDB -x "$GDBMACROS" "$@" -else - echo "*** $GDBMACROS does not exist ***" - echo "*** Pintos GDB macros will not be available ***" - exec $GDB "$@" -fi -- cgit v1.2.3