diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 14:15:21 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 14:15:21 +0000 |
commit | ceca07fb1448a91cd81e6b36188f7a785c901be1 (patch) | |
tree | 4fa0b980b9deb3a41ba7b8a17845888d77150f31 /gdbinit | |
parent | b75685d38cfe5d9ab4881dd9549ee9ee20b47458 (diff) |
automatic import of gdbopeneuler24.03_LTS
Diffstat (limited to 'gdbinit')
-rw-r--r-- | gdbinit | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +# System-wide GDB initialization file. +python +import glob +# glob.iglob is not available in python-2.4 (RHEL-5). +for f in glob.glob('%{_sysconfdir}/gdbinit.d/*.gdb'): + gdb.execute('source %s' % f) +for f in glob.glob('%{_sysconfdir}/gdbinit.d/*.py'): + gdb.execute('source %s' % f) +end |