diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-02 07:07:44 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-02 07:07:44 +0000 |
commit | e0d752d2881e86d4360913364322e02d5c55c587 (patch) | |
tree | 4fa0b980b9deb3a41ba7b8a17845888d77150f31 /gdbinit | |
parent | 99588ca2358b88299132df3a693266065f78808b (diff) |
automatic import of gdbopeneuler24.03_LTSopeneuler23.09
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 |