aboutsummaryrefslogtreecommitdiff
path: root/scripts/gdb/load_kstd.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gdb/load_kstd.py')
-rw-r--r--scripts/gdb/load_kstd.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/gdb/load_kstd.py b/scripts/gdb/load_kstd.py
deleted file mode 100644
index f3adce1..0000000
--- a/scripts/gdb/load_kstd.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import sys
-import os
-import gdb
-
-script_dir = os.path.dirname(os.path.abspath(__file__))
-
-if script_dir not in sys.path:
- sys.path.insert(0, script_dir)
-
-import kstd
-
-kstd.register_printers(gdb.current_objfile())
-
-gdb.write("Loaded kstd pretty printers.\n")