Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2024-11-09 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-08 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-07 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-06 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-05 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-04 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-03 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-02 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-11-01 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-31 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-30 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-29 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-28 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-27 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-26 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-25 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-24 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-23 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-22 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-21 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-20 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-19 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-18 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-17 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-16 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-15 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-14 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-13 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-12 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-11 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-10 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-09 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-08 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-07 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-06 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-05 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-04 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-03 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-02 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-10-01 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-30 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-29 | Bump GDB's version number to 15.2.90.DATE-git. | Joel Brobecker | 2 | -2/+2 | |
This commit changes gdb/version.in to 15.2.90.DATE-git. This commit also makes the following changes in gdb/testsuite: * gdb.base/default.exp: Change $_gdb_minor to 3. | |||||
2024-09-29 | Set GDB version number to 15.2.gdb-15.2-release | Joel Brobecker | 1 | -1/+1 | |
This commit changes gdb/version.in to 15.2. | |||||
2024-09-29 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-28 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-27 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-26 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-26 | [gdb/python] Make sure python sys.exit makes gdb exit | Tom de Vries | 2 | -0/+98 | |
With gdb 15.1, python sys.exit no longer makes gdb exit: ... $ gdb -q -batch -ex "python sys.exit(2)" -ex "print 123"; echo $? Python Exception <class 'SystemExit'>: 2 Error occurred in Python: 2 $1 = 123 0 ... This is a change in behaviour since commit a207f6b3a38 ("Rewrite "python" command exception handling"), first available in gdb 15.1. This patch reverts to the old behaviour by handling PyExc_SystemExit in gdbpy_handle_exception, such what we have instead: ... $ gdb -q -batch -ex "python sys.exit(2)" -ex "print 123"; echo $? 2 ... Tested on x86_64-linux, with python 3.6 and 3.13. Tested-By: Guinevere Larsen <blarsen@redhat.com> Approved-By: Tom Tromey <tom@tromey.com> PR python/31946 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31946 | |||||
2024-09-25 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2024-09-24 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |