From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40509 invoked by alias); 7 Jul 2019 13:44:20 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 40457 invoked by uid 89); 7 Jul 2019 13:44:12 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=H*Ad:D*fr, HTo:D*fr, UD:us, HContent-Transfer-Encoding:8bit X-HELO: gproxy2-pub.mail.unifiedlayer.com Received: from outbound-ss-879.bluehost.com (HELO gproxy2-pub.mail.unifiedlayer.com) (69.89.30.202) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 07 Jul 2019 13:44:10 +0000 Received: from CMGW (unknown [10.9.0.13]) by gproxy2.mail.unifiedlayer.com (Postfix) with ESMTP id 8AB4F1E0813 for ; Sun, 7 Jul 2019 07:44:06 -0600 (MDT) Received: from box5008.bluehost.com ([50.116.64.19]) by cmsmtp with ESMTP id k7SYhlQc19Aihk7SYh8d1N; Sun, 07 Jul 2019 07:44:06 -0600 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mad-scientist.us; s=default; h=Content-Transfer-Encoding:MIME-Version: Content-Type:References:In-Reply-To:Date:To:Reply-To:From:Subject:Message-ID: Sender:Cc:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=8Na5qory47+p3b0Txyfqqzs6Pu6f13UFPggqdlfwHMo=; b=eSnbGZzKtBnTteGfKQjfD+tUX4 Gv3zOEDvqJXcELsFK2SnPkDw5LC8bYQryRJ1blomDmQQdWxlNSbRLfeLJAXUdITVjLrfo+G4HNG6s VhAXYiCMWPDEbIk9e39HqqrYO; Received: from pool-98-118-0-140.bstnma.fios.verizon.net ([98.118.0.140]:57844 helo=homebase.home) by box5008.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1hk7SX-002S7O-U2; Sun, 07 Jul 2019 07:44:06 -0600 Message-ID: Subject: Re: Nobody help myself in older e-mail From: Paul Smith Reply-To: paul@mad-scientist.net To: Dorian ROSSE , "gcc-help@gcc.gnu.org" Date: Sun, 07 Jul 2019 13:44:00 -0000 In-Reply-To: References: , , Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.32.1-2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-07/txt/msg00076.txt.bz2 On Sun, 2019-07-07 at 12:58 +0000, Dorian ROSSE wrote: > ‘cd objdir; make -k check’ Unfortunately it's very hard to understand what you are doing, what you already did, and what you're trying to do. I will assume that you've followed the instructions in the documentation and successfully configured and compiled GCC and now you're trying to invoke the "check" operation to verify it. I recommend that you remove the "-k" option from your make command: that option tells make that if it encounters an error it should keep going to do as much more work as it can before exiting with an error. So, the error you encountered is probably much earlier in your output: the messages you showed us are not the actual errors, they are just the remnants of make discovering you had an error. Without seeing the actual errors there's nothing we can do to help. By removing the "-k" option, make will stop immediately when it hits the first error which could make it simpler for you to locate it.