diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-06 05:48:09 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-06 05:48:09 +0000 |
commit | ab322c77aab87050c6ca0ce58e18f31e269e519b (patch) | |
tree | 7ff9c6a18efd867f35cb6f8fb08893c6b655376f /gdbinit | |
parent | 19677e130f0cd283f7884cc4b6b3d52f8812dae5 (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 |