aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-10-22Automatic date update in version.inGDB Administrator1-1/+1
2019-10-21Automatic date update in version.inGDB Administrator1-1/+1
2019-10-20Automatic date update in version.inGDB Administrator1-1/+1
2019-10-19Automatic date update in version.inGDB Administrator1-1/+1
2019-10-18Automatic date update in version.inGDB Administrator1-1/+1
2019-10-17Automatic date update in version.inGDB Administrator1-1/+1
2019-10-16Automatic date update in version.inGDB Administrator1-1/+1
2019-10-15Automatic date update in version.inGDB Administrator1-1/+1
2019-10-14Automatic date update in version.inGDB Administrator1-1/+1
2019-10-13Automatic date update in version.inGDB Administrator1-1/+1
2019-10-12Automatic date update in version.inGDB Administrator1-1/+1
2019-10-11Automatic date update in version.inGDB Administrator1-1/+1
2019-10-10Automatic date update in version.inGDB Administrator1-1/+1
2019-10-09Automatic date update in version.inGDB Administrator1-1/+1
2019-10-08Automatic date update in version.inGDB Administrator1-1/+1
2019-10-07Automatic date update in version.inGDB Administrator1-1/+1
2019-10-06Automatic date update in version.inGDB Administrator1-1/+1
2019-10-05Automatic date update in version.inGDB Administrator1-1/+1
2019-10-04Automatic date update in version.inGDB Administrator1-1/+1
2019-10-03Automatic date update in version.inGDB Administrator1-1/+1
2019-10-02Automatic date update in version.inGDB Administrator1-1/+1
2019-10-01Automatic date update in version.inGDB Administrator1-1/+1
2019-09-30Automatic date update in version.inGDB Administrator1-1/+1
2019-09-29Automatic date update in version.inGDB Administrator1-1/+1
2019-09-28Automatic date update in version.inGDB Administrator1-1/+1
2019-09-27Automatic date update in version.inGDB Administrator1-1/+1
2019-09-26Automatic date update in version.inGDB Administrator1-1/+1
2019-09-25Automatic date update in version.inGDB Administrator1-1/+1
2019-09-24Automatic date update in version.inGDB Administrator1-1/+1
2019-09-23Automatic date update in version.inGDB Administrator1-1/+1
2019-09-22Automatic date update in version.inGDB Administrator1-1/+1
2019-09-21Automatic date update in version.inGDB Administrator1-1/+1
2019-09-20Bump GDB version number to 8.3.1.DATE-git.Joel Brobecker2-1/+5
gdb/ChangeLog: * version.in: Set GDB version number to 8.3.1.DATE-git.
2019-09-20Document the GDB 8.3.1 release in gdb/ChangeLogJoel Brobecker1-0/+4
gdb/ChangeLog: GDB 8.3.1 released.
2019-09-20Set GDB version number to 8.3.1.gdb-8.3.1-releaseJoel Brobecker2-1/+5
gdb/ChangeLog: * version.in: Set GDB version number to 8.3.1.
2019-09-20Automatic date update in version.inGDB Administrator1-1/+1
2019-09-19Add Rust support to source highlightingTom Tromey4-13/+47
[ Backport of master commit d806ea2d0e. ] Currently, no release of GNU Source Highlight supports Rust. However, I've checked in a patch to do so there, and I plan to make a new release sometime this summer. This patch prepares gdb for that by adding support for Rust to the source highlighting code. Because Source Highlight will throw an exception if the language is unrecognized, this also changes gdb to ignore exceptions here. This will cause gdb to fall back to un-highlighted source text. This updates gdb's configure script to reject the combination of Source Highlight and -static-libstdc++. This is done because it's not possible to use -static-libstdc++ and then catch exceptions from a shared library. Tested with the current and development versions of Source Highlight. gdb/ChangeLog 2019-08-19 Tom Tromey <tom@tromey.com> PR gdb/25009 * configure: Rebuild. * configure.ac: Disallow the combination of -static-libstdc++ and source highlight. * source-cache.c (get_language_name): Handle rust. (source_cache::get_source_lines): Ignore highlighting exceptions.
2019-09-19Add --with-static-standard-libraries to the top levelTom Tromey3-2/+44
[ Backport of master commit c1a5d03a89. ] gdb should normally not be linked with -static-libstdc++. Currently this has not caused problems, but it's incompatible with catching an exception thrown from a shared library -- and a subsequent patch changes gdb to do just this. This patch adds a new --with-static-standard-libraries flag to the top-level configure. It defaults to "auto", which means enabled if gcc is being built, and disabled otherwise. ChangeLog 2019-08-19 Tom Tromey <tom@tromey.com> PR gdb/25009 * configure: Rebuild. * configure.ac: Add --with-static-standard-libraries.
2019-09-19Automatic date update in version.inGDB Administrator1-1/+1
2019-09-18Update ChangeLog entry of commit 98c90f8028 and mention PR c++/20020Tom de Vries1-0/+1
2019-09-18Update ChangeLog entry of commit 3b752ac2e6 and mention PR testsuite/25016Tom de Vries1-0/+1
2019-09-18Update ChangeLog entry of commit 7e38ddcb2e and mention PR breakpoints/25011Tom de Vries2-0/+2
2019-09-18Update ChangeLog entry of commit 8ac39635f6 and mention PR gdb/25010Tom de Vries1-0/+1
2019-09-18Automatic date update in version.inGDB Administrator1-1/+1
2019-09-17[gdb/testsuite] Fix regexp in skip_opencl_testsTom de Vries2-1/+6
[ Backport of master commit d2b584a55b. ] When running gdb-caching-proc.exp, if skip_opencl_tests fails like this: ... (gdb) run Starting program: \ build/gdb/testsuite/outputs/gdb.base/gdb-caching-proc/opencltest13530.x CHK_ERR (clGetPlatformIDs (1, &platform, NULL), -1001) src/gdb/testsuite/lib/opencl_hostapp.c:73 error: Unknown [Inferior 1 (process 13600) exited with code 01] (gdb) skip_opencl_tests: OpenCL support not detected ... then this regexp in skip_opencl_tests fails to match: ... -re ".*$inferior_exited_re code.*${gdb_prompt} $" { ... so instead we hit the default clause after a 30 seconds timeout. With the iteration count set at 10, we end up taking 6 minutes to run this test-case. Fix this by adding the missing "with" in the regexp, bring back the runtime to half a minute. Tested on x86_64-linux. gdb/testsuite/ChangeLog: 2019-04-29 Tom de Vries <tdevries@suse.de> PR testsuite/25005 * lib/opencl.exp (skip_opencl_tests): Add missing "with" in regexp.
2019-09-17Update ChangeLog entry of commit e9224f6d80ea35e90a61d44575f12b26742eaaf3 ↵Sergio Durigan Junior1-0/+1
and mention PR breakpoints/24541
2019-09-17Automatic date update in version.inGDB Administrator1-1/+1
2019-09-16Automatic date update in version.inGDB Administrator1-1/+1
2019-09-15Automatic date update in version.inGDB Administrator1-1/+1
2019-09-14Automatic date update in version.inGDB Administrator1-1/+1