From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id FViYOfichGDQMwAAWB0awg (envelope-from ) for ; Sat, 24 Apr 2021 18:34:32 -0400 Received: by simark.ca (Postfix, from userid 112) id DCC9D1F11C; Sat, 24 Apr 2021 18:34:32 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 7D2951E54D for ; Sat, 24 Apr 2021 18:34:30 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id C09883844028; Sat, 24 Apr 2021 22:34:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C09883844028 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1619303669; bh=TuCSFpNu8AnF0qEGecELY2Ifg7ihYCapvCevQchFKmc=; h=Date:To:Subject:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=Am1+ZQ7ipqCGe6YEDBof7lwSqFDZ+9B3AZuHVW2qdu5C7Sdd/6Dwa6pFN629p0hsZ /2j7FYvoi4+wbBRFyhffkz4vNGprzCOw7i4Tz1xJy5lvZYXGvj6FwKWClZajkwYazA jrhiyeD0lS/bBukIk8yWXm4Z+nIvDO/4ZOnDL7ak= Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 272123844028 for ; Sat, 24 Apr 2021 22:34:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 272123844028 Received: from vapier (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A99C340F3A; Sat, 24 Apr 2021 22:34:23 +0000 (UTC) Date: Sat, 24 Apr 2021 18:34:22 -0400 To: Tom Tromey Subject: Re: [PATCH] sim: enable hardware support by default Message-ID: Mail-Followup-To: Tom Tromey , Mike Frysinger via Gdb-patches , joel@rtems.org References: <20210424041958.12761-1-vapier@gentoo.org> <8735vfe5fa.fsf@tromey.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <8735vfe5fa.fsf@tromey.com> X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Mike Frysinger via Gdb-patches Reply-To: Mike Frysinger Cc: joel@rtems.org, Mike Frysinger via Gdb-patches Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 24 Apr 2021 15:30, Tom Tromey wrote: > >>>>> "Mike" == Mike Frysinger via Gdb-patches writes: > > Mike> Force this on for all ports. We have a few common models that can > Mike> be used, so make them generally available. If the port doesn't use > Mike> any hardware (the default), then behavior is unchanged. > > I didn't bisect, so I am not completely sure, but some recent patch > (maybe this one) caused: this one hasn't been merged yet > ../../../binutils-gdb/sim/mips/../common/dv-sockser.c:226:1: warning: no previous prototype for ‘dv_sockser_install’ [-Wmissing-prototypes] > 226 | dv_sockser_install (SIM_DESC sd) > | ^~~~~~~~~~~~~~~~~~ i've seen this when the dir doesn't fully reconfigure. i fixed it with a `rm -rf sim && make all-sim`. -mike