From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 799693856974; Fri, 21 Oct 2022 14:18:43 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 799693856974 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666361923; bh=6y1PEtSeRFhD50kJU7JlFH2CzbxEulAQLN1WnSfnY5o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=tFmOQT8poQ8VrgHJ0FQ+icJpgMoG8nfuy4TJjWAiqjAbArVWfgBk3f7DlNkkwucl8 hz0JdwEq3zMWV7QtI8oqGi8h7+X4iPnoN7IueFAFUmQSvjB+umcr8zpLxv0wPAFQDp 165VxeBAGile7T9oOIzUoPUu7Rla0N9K5zwVKu4s= From: "vries at gcc dot gnu.org" To: gdb-prs@sourceware.org Subject: [Bug python/29712] [gdb, aarch64] UNRESOLVED: gdb.python/py-disasm.exp: global_disassembler=ReadMemoryGdbErrorDisassembler: disassemble test Date: Fri, 21 Oct 2022 14:18:43 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gdb X-Bugzilla-Component: python X-Bugzilla-Version: HEAD X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: vries at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D29712 --- Comment #4 from Tom de Vries --- (In reply to Tom de Vries from comment #3) > Maybe -fexceptions missing on the opcodes file or some such. Yep, this patch is sufficient to make the test-case pass on aarch64: ... diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index fe4539d6097..03efe198461 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -206,11 +206,11 @@ depcomp =3D $(SHELL) $(top_srcdir)/../depcomp am__depfiles_maybe =3D depfiles am__mv =3D mv -f COMPILE =3D $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -fexceptions LTCOMPILE =3D $(LIBTOOL) $(AM_V_lt) --tag=3DCC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=3Dcompile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CFLAGS) $(CFLAGS) + $(AM_CFLAGS) $(CFLAGS) -fexceptions AM_V_CC =3D $(am__v_CC_@AM_V@) am__v_CC_ =3D $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 =3D @echo " CC " $@; ... --=20 You are receiving this mail because: You are on the CC list for the bug.=