From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23631 invoked by alias); 9 Feb 2018 04:24:55 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 23612 invoked by uid 89); 9 Feb 2018 04:24:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*i:sk:5702aae, H*f:sk:5702aae, 2627, WWW X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 09 Feb 2018 04:24:53 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 7A94F56024; Thu, 8 Feb 2018 23:24:51 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id dnuxOv-v66uu; Thu, 8 Feb 2018 23:24:51 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 04D6C5601C; Thu, 8 Feb 2018 23:24:51 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 55E9B8304F; Fri, 9 Feb 2018 08:24:46 +0400 (+04) Date: Fri, 09 Feb 2018 04:24:00 -0000 From: Joel Brobecker To: Pedro Alves Cc: GDB Patches Subject: [pushed] GDB WWW main page adjustements (was: "Re: [ANNOUNCEMENT] GDB 8.1 released!") Message-ID: <20180209042446.6kpn5wnfdqy4ztot@adacore.com> References: <20180202154032.6d2e6ig3h6xnfm55@adacore.com> <5702aae7-7f3e-3ec4-3248-695f87ec3fae@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="wyqf2bumjylnagdh" Content-Disposition: inline In-Reply-To: <5702aae7-7f3e-3ec4-3248-695f87ec3fae@redhat.com> User-Agent: NeoMutt/20170113 (1.7.2) X-SW-Source: 2018-02/txt/msg00141.txt.bz2 --wyqf2bumjylnagdh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 904 > > | Those programs might be executing on the same machine as GDB (native) > > | or on another machine (remote). > > Maybe add "or on a simulator". > > > GDB can run on most popular UNIX and | Microsoft Windows variants. > > Maybe add macOS here. > > > | > > | What Languages does GDB Support? > > | -------------------------------- > > | > > | GDB supports the following languages (in alphabetical order): > > | * Ada > > | * Assembly > > | * C > > | * C++ > > | * D > > | * Fortran > > | * Go > > | * Objective-C > > | * OpenCL > > | * Modula-2 > > | * Pascal > > | * Rust > > > > Sounds good to me. [...] > I think not listing active languages is worse than also listing > bitrotted languages, so I think on balance it's still better. Makes better sense indeed. Attached are the 3 patches I applied to take care of the above, which is now live. Thanks for the feedback! -- Joel --wyqf2bumjylnagdh Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0001-main-page-provide-exhaustive-list-of-supported-langu.patch" Content-length: 1959 >From 229159ed6c7af0280ebb9365676b565bb989a4e8 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 9 Feb 2018 08:13:44 +0400 Subject: [PATCH 1/3] main page: provide exhaustive list of supported languages in its own section Rather than provide a sublist of supported languages in the "What is GDB?" section, with the languages being chosen somewhat abitrarily, move that information to its own new section right after it, and list all supported languages. --- index.html | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 1ac39f0..4dcba5d 100644 --- a/index.html +++ b/index.html @@ -65,10 +65,27 @@ of these) to help you catch bugs in the act: correcting the effects of one bug and go on to learn about another. -The program being debugged can be written in Ada, C, C++, Objective-C, -Pascal (and many other languages). Those programs might be executing -on the same machine as GDB (native) or on another machine (remote). GDB -can run on most popular UNIX and Microsoft Windows variants.

+Those programs might be executing on the same machine as GDB (native) +or on another machine (remote). GDB can run on most popular UNIX and +Microsoft Windows variants.

+ +

What Languages does GDB Support?

+ +GDB supports the following languages (in alphabetical order): +
    +
  • Ada
  • +
  • Assembly
  • +
  • C
  • +
  • C++
  • +
  • D
  • +
  • Fortran
  • +
  • Go
  • +
  • Objective-C
  • +
  • OpenCL
  • +
  • Modula-2
  • +
  • Pascal
  • +
  • Rust
  • +

GDB version 8.1

@@ -262,7 +279,7 @@ Floor, Boston, MA 02110-1301 USA.

Verbatim copying and distribution of this entire article is permitted in any medium, provided this notice is preserved.

-

Last modified 2018-01-31.

+

Last modified 2018-02-09.

-- 2.11.0 --wyqf2bumjylnagdh Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0002-main-page-document-that-GDB-runs-on-Mac-OS-X-also.patch" Content-length: 777 >From 6e1ac8c391c3ebc4526052e7a4d539bce03783ca Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 9 Feb 2018 08:18:14 +0400 Subject: [PATCH 2/3] main page: document that GDB runs on Mac OS X also. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 4dcba5d..4a01247 100644 --- a/index.html +++ b/index.html @@ -67,7 +67,7 @@ correcting the effects of one bug and go on to learn about another. Those programs might be executing on the same machine as GDB (native) or on another machine (remote). GDB can run on most popular UNIX and -Microsoft Windows variants.

+Microsoft Windows variants, as well as on Mac OS X.

What Languages does GDB Support?

-- 2.11.0 --wyqf2bumjylnagdh Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="0003-main-page-Document-the-fact-that-GDB-can-debug-progr.patch" Content-length: 1042 >From 67c0ef49dc7354db981eb90849b2e100cb5bc0c2 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 9 Feb 2018 08:21:46 +0400 Subject: [PATCH 3/3] main page: Document the fact that GDB can debug programs running on a sim --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 4a01247..db4985b 100644 --- a/index.html +++ b/index.html @@ -65,9 +65,9 @@ of these) to help you catch bugs in the act: correcting the effects of one bug and go on to learn about another. -Those programs might be executing on the same machine as GDB (native) -or on another machine (remote). GDB can run on most popular UNIX and -Microsoft Windows variants, as well as on Mac OS X.

+Those programs might be executing on the same machine as GDB (native), +on another machine (remote), or a on simulator. GDB can run on most +popular UNIX and Microsoft Windows variants, as well as on Mac OS X.

What Languages does GDB Support?

-- 2.11.0 --wyqf2bumjylnagdh--