diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:06:24 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:06:24 +0000 |
commit | fb9e94c608e22ae34d776deffbfd225a2be15a53 (patch) | |
tree | 4fa0b980b9deb3a41ba7b8a17845888d77150f31 /gdbinit | |
parent | ba9480ce1210dc551f343b938be2fa00759e1616 (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 |