From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 292CD3858D28 for ; Mon, 19 Jun 2023 11:19:59 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 292CD3858D28 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id 53E292184F; Mon, 19 Jun 2023 11:19:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1687173598; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=/o1nUK9dZsItql1LopXNMVOB/o3NAJyF0Usi+BiR+T4=; b=yhL+Q51uc+vJHqkbZYkM5W+VxHJKRZN624QGZaIMae7NRyX/OAA1oXH5y/4EtF47RNr2Lj UofDFt8O9+zkN/hmmDOVEredXxxE6FQTdRMOBIp7Dwc57uHTRRXyYqCLOEd0IqcV4qHSO4 6UWjizy8S5lSiDrNM/TrQ2qJn62aYug= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1687173598; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=/o1nUK9dZsItql1LopXNMVOB/o3NAJyF0Usi+BiR+T4=; b=P2QuAC2c78aUzHpYyruJmFvFHBz5mn+JYA30ZcPVM0tXHWcXfcRxA7tXa8ih9AGNe6NDTl 5ARbOW18Iobm0GDQ== Received: from wotan.suse.de (wotan.suse.de [10.160.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id 415D52C141; Mon, 19 Jun 2023 11:19:58 +0000 (UTC) Date: Mon, 19 Jun 2023 11:19:57 +0000 (UTC) From: Richard Biener To: Tamar Christina cc: "gcc-patches@gcc.gnu.org" Subject: RE: [PATCH] Remove -save-temps from tests using -flto In-Reply-To: Message-ID: References: User-Agent: Alpine 2.22 (LSU 394 2020-01-19) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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: On Mon, 19 Jun 2023, Tamar Christina wrote: > > -----Original Message----- > > From: Richard Biener > > Sent: Monday, June 19, 2023 11:19 AM > > To: Tamar Christina > > Cc: gcc-patches@gcc.gnu.org > > Subject: RE: [PATCH] Remove -save-temps from tests using -flto > > > > On Mon, 19 Jun 2023, Tamar Christina wrote: > > > > > > -----Original Message----- > > > > From: Richard Biener > > > > Sent: Monday, June 19, 2023 7:28 AM > > > > To: gcc-patches@gcc.gnu.org > > > > Cc: Tamar Christina > > > > Subject: [PATCH] Remove -save-temps from tests using -flto > > > > > > > > The following removes -save-temps that doesn't seem to have any good > > > > reason from tests that also run with -flto added. That can cause > > > > ltrans files to race with other multilibs tested and I'm frequently > > > > seeing linker complaints that the architecture doesn't match here. > > > > > > > > I'm not sure whether the .ltrans.o files end up in a non gccN/ > > > > specific directory or if we end up sharing the same dir for > > > > different multilibs (not sure if it's easily possible to avoid that). > > > > > > > > Parallel testing on x86_64-unknown-linux-gnu in progress. > > > > > > > > Tamar, was there any reason to use -save-temps here? > > > > > > At the time I was getting unresolved errors from these without it. > > > But perhaps that's something to do with dejagnu versions? > > > > I don't know. Can you check if there's an issue on your side when removing - > > save-temps? > > Nope no issues, all tests still pass. Pushed then. Richard.