gcc-toolset-15-gdb/gdbinit
Guinevere Larsen d03dcd7d6c Initial import of sources
Resolves: RHEL-81744
2025-04-17 09:37:10 -03:00

10 lines
285 B
Plaintext

# 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