From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 0996E3858401 for ; Fri, 27 Oct 2023 05:59:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0996E3858401 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 0996E3858401 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2001:470:142:3::10 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1698386347; cv=none; b=p1xvTKvweIWBhkpB6QL63/YF9/DwBYdH5A0tCaFbO5bGjRqhDczsAPBA+25nMMmZJKy7GBAcu75Y7chPjhjvwoqDSuViuun95zZazkF6dlNNBUEYo8scup2AwbSKrqlALZrGR2xEMXfg/AyWp4V3oQcW5oCKHCf4jhF2dFWUqPQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1698386347; c=relaxed/simple; bh=VrY1rwCZz0Y/NG2ZFC6ALoUYelK6vgRrtdY8S7XFNEs=; h=DKIM-Signature:Date:Message-Id:From:To:Subject; b=WqXLqnlYCq4sKi5NhPu6XCeTtUTfLfICmxekoDc/4RbRLc61k9zP5myV9Hrp12bL5BzbdqgtMqnWHUcEpx2zHzzLqJne54BTsml5cgV7/84uESyn9Y4fyUQ5TqJW5ekbqFSgF/SCtJE/692wXV0kzS05nMMuFubbCqnarBFQvjY= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qwFs7-00063y-4o; Fri, 27 Oct 2023 01:59:04 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=zyI+/Uln52LUnnH/r8XsUmA2pKcpag+DiPNHck+S7/Y=; b=HXke6iYRuSzN 7fRiWiwWUpq/L2V0FuQ3WE2Xmpq/3ICh4Xl+5rReqpEXsMlRrTYE8zaIrgvcPb5hfRKuzk1rCeYcD WG7WtxERQQbWHh3m31bMcGBN4m1NydJMljzbFXP0x6XBJAallBrI8FPtT535WmLl5A5LtQEvHoGXs UchB4N52CxNrNM4TQigpoKRMJ0NgHdO4f3+3hwAiPZqPeES+l5PkfjfJKS0LKH+O9M2YreecCsZTC Z2VYE/5+9hRGxnnAg0JCpsIN+wEve5hNS/TGDbY1n7PXz5NybcE5g3oFbrtdZH6OrAaOCkUdnVj18 ZyO24sq5SpVN3cetUuhSNg==; Date: Fri, 27 Oct 2023 08:59:11 +0300 Message-Id: <837cn8fvww.fsf@gnu.org> From: Eli Zaretskii To: Thiago Jung Bauermann Cc: gdb-patches@sourceware.org, tom@tromey.com In-Reply-To: <87sf5xrllh.fsf@linaro.org> (message from Thiago Jung Bauermann on Thu, 26 Oct 2023 20:48:58 -0300) Subject: Re: [PATCH v2] gdb/configure.ac: Add option --with-additional-debug-dirs References: <20231004183102.61669-1-thiago.bauermann@linaro.org> <831qe964lt.fsf@gnu.org> <87y1ggll4e.fsf@linaro.org> <83cyxq29wf.fsf@gnu.org> <838r7ph9xr.fsf@gnu.org> <87sf5xrllh.fsf@linaro.org> X-Spam-Status: No, score=0.5 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > From: Thiago Jung Bauermann > Cc: gdb-patches@sourceware.org, tom@tromey.com > Date: Thu, 26 Oct 2023 20:48:58 -0300 > > > FTR: just tried this with the gdb-14.0.91 pretest, and it works just > > fine. Thank you very much for helping me avoid this annoying problem > > (it previously required me to build GDB twice). > > Excellent! I poked at it some more today and I noticed two things: > > 1. We provide the definition of AC_DEFINE_DIR ourselves in > gdb/acinclude.m4, so what I said earlier about the fix having to be > in Autoconf was wrong. Too bad, it's always a relief when the blame > lies somewhere else. :-) > > 2. We can do the escape trick above automatically in gdb/configure.ac. > > So I just sent a patch to do that: > > https://inbox.sourceware.org/gdb-patches/20231026234013.937210-1-thiago.bauermann@linaro.org/ Thanks, this is even better!