From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 8AdHIP6X0mB7bwAAWB0awg (envelope-from ) for ; Tue, 22 Jun 2021 22:10:06 -0400 Received: by simark.ca (Postfix, from userid 112) id 81AB61F1F2; Tue, 22 Jun 2021 22:10:06 -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=unavailable 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 7D3A31E01F for ; Tue, 22 Jun 2021 22:10:05 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id D3EAE395B410 for ; Wed, 23 Jun 2021 02:10:04 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D3EAE395B410 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1624414204; bh=cUjv1+RRSdH5qrGkq8bzfW/GX4MblMrHVHFO4J6c+oI=; 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=WORSeSJHzFVfbEjqpILr+CdmLXgYxHFRENXNqrY4Q/pDYiX7Jj6oyNKI+TWO+z/ft xdUQ6i6E5hUo2eFCUlWwbbs7qAcfyGEQWS/8C80q8DVN4IsojGIk4rBANDsuj6uGpu w3dZCWWnjuShrz7XrsBmlTPrqRzJQKJyJ1dFcdPo= Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 979F5383D02C for ; Wed, 23 Jun 2021 02:09:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 979F5383D02C 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 C5DD933BEE9; Wed, 23 Jun 2021 02:09:41 +0000 (UTC) Date: Tue, 22 Jun 2021 22:09:40 -0400 To: Simon Marchi Subject: Re: [PATCH 3/5] sim: drop configure scripts for simple ports Message-ID: Mail-Followup-To: Simon Marchi , gdb-patches@sourceware.org References: <20210620055519.22229-1-vapier@gentoo.org> <20210620055519.22229-3-vapier@gentoo.org> <6d81e053-3470-e106-9556-e20e2610545a@polymtl.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <6d81e053-3470-e106-9556-e20e2610545a@polymtl.ca> 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: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 22 Jun 2021 21:05, Simon Marchi wrote: > On 2021-06-20 1:55 a.m., Mike Frysinger via Gdb-patches wrote: > > These ports only use the pieces that have been unified, so we can > > merge them into the common configure script and get rid of their > > unique one entirely. > > > > We still compile & link separate run programs, and have dedicated > > subdir Makefiles, but the configure script portion is merged. > > Starting with this patch (I think) the file sim/aarch64/Makefile gets > generated with a wrong srcdir value: > > srcdir = ..//home/simark/src/binutils-gdb/sim/aarch64 it's def this patch. i spent time digging through the docs to see if there was a guarantee as to the value of srcdir (relative or absolute), but couldn't find anything conclusive. i guess it can be either :). let me hack up something better here. -mike