From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by sourceware.org (Postfix) with ESMTP id 89198385E010 for ; Thu, 16 Jun 2022 13:18:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 89198385E010 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=kernel.crashing.org Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 25GDHa5r019990; Thu, 16 Jun 2022 08:17:36 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 25GDHaRt019989; Thu, 16 Jun 2022 08:17:36 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Thu, 16 Jun 2022 08:17:35 -0500 From: Segher Boessenkool To: =?utf-8?B?5raC5a6256S8?= Cc: gcc-help@gcc.gnu.org Subject: Re: Some error when installing =?utf-8?Q?t?= =?utf-8?B?aGUgZ2NjOS40LjDvvIx3aGVu?= "make". Message-ID: <20220616131735.GF25951@gate.crashing.org> References: <6806c378.34a1.18132afeeae.Coremail.jl.tu@siat.ac.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <6806c378.34a1.18132afeeae.Coremail.jl.tu@siat.ac.cn> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-1.7 required=5.0 tests=BAYES_00, BODY_8BITS, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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: Thu, 16 Jun 2022 13:18:42 -0000 Hi! On Sun, Jun 05, 2022 at 03:06:39PM +0800, 涂家礼 wrote: > make[4]: Warning: File `../libiberty/pic/libiberty.a' has modification time 8.1 s in the future This could be a serious problem. But, it seems unrelated to your problem. OTOH, "make" very much does not like things that time travel. > /usr/bin/ld: /usr/local/lib/gcc/x86_64-pc-linux-gnu/9.4.0/crtbeginS.o: unrecognized relocation (0x2a) in section `.text' Your /usr/bin/ld does not know about the relocation R_X86_64_REX_GOTPCRELX (which is numeric 42) apparently. Use a newer linker? You likely used a newer linker and assembler etc. to compile stuff, to get this far, so figure out why not now? Segher