From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-4.zmailcloud.com (admina.zmailcloud.com [52.38.240.63]) by sourceware.org (Postfix) with ESMTPS id 065883858C50 for ; Tue, 4 Oct 2022 20:44:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 065883858C50 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=symas.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=symas.com Received: from zmcc-3.zmailcloud.com (183.87.154.104.bc.googleusercontent.com [104.154.87.183]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp-4.zmailcloud.com (Postfix) with ESMTPS id 7C6C140D74; Tue, 4 Oct 2022 15:44:40 -0500 (CDT) Received: from zmcc-3.zmailcloud.com (localhost [127.0.0.1]) by zmcc-3-mta-1.zmailcloud.com (Postfix) with ESMTPS id 033DC8036471; Tue, 4 Oct 2022 15:44:40 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by zmcc-3-mta-1.zmailcloud.com (Postfix) with ESMTP id E9B27803646A; Tue, 4 Oct 2022 15:44:39 -0500 (CDT) Received: from zmcc-3.zmailcloud.com ([127.0.0.1]) by localhost (zmcc-3-mta-1.zmailcloud.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id pQJpn9G4h3TZ; Tue, 4 Oct 2022 15:44:39 -0500 (CDT) Received: from zmcc-3-mailbox-1.zmailcloud.com (zmcc-3-mailbox-1.zmailcloud.com [10.240.0.91]) by zmcc-3-mta-1.zmailcloud.com (Postfix) with ESMTP id D05488036FCD; Tue, 4 Oct 2022 15:44:39 -0500 (CDT) From: Robert Dubner To: "Andrew Pinski" Cc: References: <038b01d8d780$4c5982f0$e50c88d0$@symas.com> In-Reply-To: Subject: RE: How do I create a GCC source code tarball? Thread-Topic: How do I create a GCC source code tarball? Date: Tue, 4 Oct 2022 15:44:39 -0500 (CDT) Message-ID: <04e901d8d832$1f738b20$5e5aa160$@symas.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Outlook 16.0 X-Mailer: Zimbra 8.8.15_GA_4372 (Zimbra-ZCO/9.0.0.1922 (10.0.22000 en-US) P1740 T4230 R4299) Thread-Index: AQIAl1Iemw9bNU8EYOw6BKHWq6P6LQGq1hkDraHdaOA= Content-Language: en-us X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,KAM_DMARC_STATUS,KAM_SHORT,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,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: I had a feeling that's what the answer was going to be, but, well, I figured it couldn't hurt to ask. Especially because I hadn't before noticed the maintainer-scripts subdirectory. That alone made asking worth it. Thank you very much, Bob Dubner -----Original Message----- From: Andrew Pinski Sent: Tuesday, October 4, 2022 15:03 To: Robert Dubner Cc: gcc@gcc.gnu.org Subject: Re: How do I create a GCC source code tarball? On Mon, Oct 3, 2022 at 4:32 PM Robert Dubner wrote: > > I have modified the source code of GCC, and I need a tarball for that > modified source. > > My code is based on the trunk branch of the repository at > git://gcc.gnu.org/git/gcc.git > > I attempted to execute "make dist", and have encountered the response > > Building a full distribution of this tree isn't done > via 'make dist'. Check out the etc/ subdirectory > > I have been unable to locate a subdirectory name "etc/". > > With that as background, my question is: > > How do I create a source code tarball for GCC? You just tar up the source. You could use maintainer-scripts/gcc_release to make a snapshot but in the end it just does `tar xcfj file.tar.bz2 gcc` . Thanks, Andrew > > Thanks very much for any help. > >