From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53094 invoked by alias); 7 Jan 2019 09:51:01 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 53060 invoked by uid 89); 7 Jan 2019 09:51:01 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 07 Jan 2019 09:50:59 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B70F3C0495B8 for ; Mon, 7 Jan 2019 09:50:58 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-116-18.ams2.redhat.com [10.36.116.18]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5F19F60C45; Mon, 7 Jan 2019 09:50:58 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id x079oubk032517; Mon, 7 Jan 2019 10:50:56 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id x079ouQs032516; Mon, 7 Jan 2019 10:50:56 +0100 Date: Mon, 07 Jan 2019 09:51:00 -0000 From: Jakub Jelinek To: Jonathan Wakely Cc: gcc-patches@gcc.gnu.org Subject: Re: [PATCH] Replace outdated references to x86_64-unknown-linux-gnu in docs Message-ID: <20190107095056.GO30353@tucnak> Reply-To: Jakub Jelinek References: <20190107094030.GA31867@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190107094030.GA31867@redhat.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg00286.txt.bz2 On Mon, Jan 07, 2019 at 09:40:30AM +0000, Jonathan Wakely wrote: > * doc/install.texi: Replace references to x86_64-unknown-linux-gnu > with x86_64-pc-linux-gnu. > > OK for trunk? Yes, thanks. > commit 7586c65abcb0f0967a11639baf1d9332dbc0339c > Author: Jonathan Wakely > Date: Mon Jan 7 09:38:51 2019 +0000 > > Replace outdated references to x86_64-unknown-linux-gnu in docs > > * doc/install.texi: Replace references to x86_64-unknown-linux-gnu > with x86_64-pc-linux-gnu. > > diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi > index 5cf007bd1ec..dd01e4caeb1 100644 > --- a/gcc/doc/install.texi > +++ b/gcc/doc/install.texi > @@ -261,10 +261,10 @@ In order to build GCC, the C standard library and headers must be present > for all target variants for which target libraries will be built (and not > only the variant of the host C++ compiler). > > -This affects the popular @samp{x86_64-unknown-linux-gnu} platform (among > +This affects the popular @samp{x86_64-pc-linux-gnu} platform (among > other multilib targets), for which 64-bit (@samp{x86_64}) and 32-bit > (@samp{i386}) libc headers are usually packaged separately. If you do a > -build of a native compiler on @samp{x86_64-unknown-linux-gnu}, make sure you > +build of a native compiler on @samp{x86_64-pc-linux-gnu}, make sure you > either have the 32-bit libc developer package properly installed (the exact > name of the package depends on your distro) or you must build GCC as a > 64-bit only compiler by configuring with the option > @@ -2070,14 +2070,14 @@ host system architecture. For the case that the linker has a > different (but run-time compatible) architecture, these flags can be > specified to build plugins that are compatible to the linker. For > example, if you are building GCC for a 64-bit x86_64 > -(@samp{x86_64-unknown-linux-gnu}) host system, but have a 32-bit x86 > +(@samp{x86_64-pc-linux-gnu}) host system, but have a 32-bit x86 > GNU/Linux (@samp{i686-pc-linux-gnu}) linker executable (which is > executable on the former system), you can configure GCC as follows for > getting compatible linker plugins: > > @smallexample > % @var{srcdir}/configure \ > - --host=x86_64-unknown-linux-gnu \ > + --host=x86_64-pc-linux-gnu \ > --enable-linker-plugin-configure-flags=--host=i686-pc-linux-gnu \ > --enable-linker-plugin-flags='CC=gcc\ -m32\ -Wl,-rpath,[...]/i686-pc-linux-gnu/lib' > @end smallexample Jakub