From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from spamtitan.readytek.com (spamtitan.readytek.com [52.52.233.192]) by sourceware.org (Postfix) with ESMTPS id F1E59393A803 for ; Fri, 20 Aug 2021 19:55:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org F1E59393A803 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=bonnevillemachine.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=bonnevillemachine.com Received: from localhost (localhost [127.0.0.1]) by spamtitan.readytek.com (Postfix) with ESMTP id 134BF263465 for ; Fri, 20 Aug 2021 13:55:34 -0600 (MDT) X-Virus-Scanned: by SpamTitan at readytek.com Received: from spamtitan.readytek.com (localhost [127.0.0.1]) by spamtitan.readytek.com (Postfix) with ESMTP id 582D226345D for ; Fri, 20 Aug 2021 13:55:28 -0600 (MDT) Authentication-Results: spamtitan.readytek.com; x-trusted-ip=pass Received: from webmail.readytek.com (65-100-223-177.dia.static.qwest.net [65.100.223.177]) by spamtitan.readytek.com (Postfix) with ESMTPS id 27B76263460 for ; Fri, 20 Aug 2021 13:55:28 -0600 (MDT) Received: from [10.0.0.87] ([96.82.249.149]) by webmail.readytek.com (13.0.1 build 2 x64) with ASMTP (SSL) id 202108201355286634 for ; Fri, 20 Aug 2021 13:55:28 -0600 To: gcc-help@gcc.gnu.org From: Lance Fredrickson Subject: Trying to find where golang runtime.inc.raw is generated Message-ID: Date: Fri, 20 Aug 2021 13:56:25 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Spam-Status: No, score=3.8 required=5.0 tests=BAYES_50, KAM_DMARC_STATUS, KAM_SHORT, RCVD_IN_BARRACUDACENTRAL, SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.4 X-Spam-Level: *** X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-help@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-help mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2021 19:55:45 -0000 I'm trying to troubleshoot this issue I have. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101246 runtime.inc used for golang is missing a couple struct definitions. I want to see how runtime.inc.raw is generated, because runtime.inc is derived from it. I think this could be an easy fix, but it's tricky navigating gcc code for the first time. thanks, Lance Fredrickson