From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [209.51.188.92]) by sourceware.org (Postfix) with ESMTPS id BAB46385841B for ; Mon, 29 Nov 2021 12:23:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org BAB46385841B Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=franke.ms Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=franke.ms Received: from serveronline.org ([78.46.86.77]:56684 helo=franke.ms) by eggs.gnu.org with esmtps (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.90_1) (envelope-from ) id 1mrfhB-0004E0-Rr for gcc-help@gcc.gnu.org; Mon, 29 Nov 2021 07:23:49 -0500 Received: from ZETRA (pd9e55281.dip0.t-ipconnect.de [217.229.82.129]) by serveronline.org (BEJY V1.6.12-SNAPSHOT (c) 2000-2021 by BebboSoft, Stefan "Bebbo" Franke, all rights reserved) with SMTP id 17d6ba1ef1018a5c0992ea425c8 from stefan@franke.ms for gcc-help@gcc.gnu.org; Mon, 29 Nov 2021 13:18:34 +0100 Reply-To: From: "Stefan Franke" To: References: In-Reply-To: Subject: AW: Gcc build fails with test_real_width is negative Date: Mon, 29 Nov 2021 13:18:33 +0100 Message-ID: <02bd01d7e51b$3abf6b20$b03e4160$@franke.ms> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQJ9OTzfi8/aDwHU7cABUmOk+w5GXwDv6C52qshEDpA= Content-Language: de Received-SPF: pass client-ip=78.46.86.77; envelope-from=stefan@franke.ms; helo=franke.ms X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Status: No, score=-3.3 required=5.0 tests=BAYES_50, KAM_DMARC_STATUS, SPF_FAIL, SPF_HELO_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 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: Mon, 29 Nov 2021 12:23:52 -0000 > -----Urspr=C3=BCngliche Nachricht----- > Von: Gcc-help Im > Auftrag von Stefan Ring via Gcc-help > Gesendet: Montag, 29. November 2021 13:00 > An: gcc-help@gcc.gnu.org > Betreff: Re: Gcc build fails with test_real_width is negative >=20 > On Mon, Nov 29, 2021 at 12:06 PM Mr Dini via Gcc-help help@gcc.gnu.org> wrote: > > > > Also, you mentioned I am not supposed to build within the source = tree. > How am I supposed to build then? outside of the gcc folder and by = specifying > "make -C folder"? >=20 > - cd to some directory, for example next to gcc- > - ../gcc-/configure [...] > - make [...] Using relative paths may break your build (e.g. using Cygwin). Use an absolute path to be safe: $PWD/../gcc-/configure [...]