From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6FA9F3870897; Sat, 30 May 2020 00:08:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6FA9F3870897 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1590797331; bh=R2/Pqnfa/SWjBtGck5CvpXKBD9DhBSMLvHpBhiYClKI=; h=From:To:Subject:Date:From; b=XEwrxU52wqpDMYJQhUQSPmtE8FR4BAheNc0c4M23l6FnUQkyEGtTLyR9/Eb086TwS x1hF+RsaxQgnYwdwPx8B9csJp7SAnYIilqDVof5erPihvUhwEP8o2KfmH6j1L9cWvH CDvDvJ11QVOPksUIwO0x3QBljdONPjuDP+MyHxIE= From: "P at draigBrady dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/95428] New: ABI breakage for "base object constructor" for final classes Date: Sat, 30 May 2020 00:08:51 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: P at draigBrady dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 May 2020 00:08:51 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95428 Bug ID: 95428 Summary: ABI breakage for "base object constructor" for final classes Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: P at draigBrady dot com Target Milestone: --- The change to elide the "base object constructor" for final classes in bug #70462 introduces an ABI incompatibility with clang 9 at least. I'm seeing this with kuduraft-1.8 compiled with GCC 10, giving linker errors from clang 9.0.20190721 like: error: undefined symbol: kudu::consensus::OpId::OpId() Reverting the change in #70462 fixes the issue=