From mboxrd@z Thu Jan 1 00:00:00 1970
Return-Path:
Received: by sourceware.org (Postfix, from userid 2161)
id 3D9F03950408; Tue, 2 Mar 2021 17:45:38 +0000 (GMT)
DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3D9F03950408
To: gcc-cvs-wwwdocs@gcc.gnu.org
Subject: gcc-wwwdocs branch master updated.
80dc53f6b38d697b169fad9ce3b8787ce1c6768c
X-Git-Refname: refs/heads/master
X-Git-Reftype: branch
X-Git-Oldrev: 57190618a8884fbf1ae7f48a6968dab84b2837fa
X-Git-Newrev: 80dc53f6b38d697b169fad9ce3b8787ce1c6768c
Message-Id: <20210302174538.3D9F03950408@sourceware.org>
Date: Tue, 2 Mar 2021 17:45:38 +0000 (GMT)
From: Mark Wielaard
X-BeenThere: gcc-cvs-wwwdocs@gcc.gnu.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Gcc-cvs-wwwdocs mailing list
-fsanitize=kernel-hwaddress
to instrument kernel code.+ For targets that produce DWARF debugging information GCC now + defaults to DWARF + version 5 (with the exception of VxWorks and Darwin/Mac OS X + which default to version 2 and AIX which defaults to version 4). + This can produce up to 25% more compact debug information + compared to earlier versions. +
+ To take full advantage of DWARF version 5 GCC needs to be build
+ against binutils version 2.35.2 or higher. When GCC is build
+ against earlier versions of binutils GCC will still emit DWARF
+ version 5 for most debuginfo data, but will generate version 4
+ debug line tables (even when explicitly given -gdwarf-5
).
+
+ The following debug information consumers can process DWARF version 5: +
+ Programs embedding libbacktrace are urged to upgrade to the version + shipping with GCC 11. +
+ To make GCC 11 generate an older DWARF version
+ use -g
together with -gdwarf-2
,
+ -gdwarf-3
or -gdwarf-4
.
+