From owner-svn-doc-head@freebsd.org Fri Jan 4 13:55:54 2019 Return-Path: Delivered-To: svn-doc-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37CB8142C0B6; Fri, 4 Jan 2019 13:55:54 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D390C6A077; Fri, 4 Jan 2019 13:55:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AD6801819; Fri, 4 Jan 2019 13:55:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x04Dtrvm027928; Fri, 4 Jan 2019 13:55:53 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x04DtrCC027927; Fri, 4 Jan 2019 13:55:53 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201901041355.x04DtrCC027927@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Fri, 4 Jan 2019 13:55:53 +0000 (UTC) To: doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org Subject: svn commit: r52746 - head/en_US.ISO8859-1/books/porters-handbook/makefiles X-SVN-Group: doc-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/en_US.ISO8859-1/books/porters-handbook/makefiles X-SVN-Commit-Revision: 52746 X-SVN-Commit-Repository: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D390C6A077 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-doc-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the doc tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Jan 2019 13:55:54 -0000 Author: mat Date: Fri Jan 4 13:55:53 2019 New Revision: 52746 URL: https://svnweb.freebsd.org/changeset/doc/52746 Log: Note that USE_GCC is a build and a run-time dependency. PR: 234495 Reported by: bergerkos yahoo co uk Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Modified: head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml ============================================================================== --- head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Thu Jan 3 13:45:41 2019 (r52745) +++ head/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml Fri Jan 4 13:55:53 2019 (r52746) @@ -5731,24 +5731,31 @@ RUN_DEPENDS= ${MY_DEPENDS} USE_GCC - The port requires GCC (gcc or - g++) to build. Some ports need any - GCC version, some require modern, recent versions. It - is typically set to any (in this - case, GCC from base would be used on versions of &os; - that still have it, or lang/gcc - port would be installed when default C/C++ compiler is - Clang); or yes (means always use - stable, modern GCC from lang/gcc - port). The exact version can also be specified, with - a value such as 4.7. The minimal - required version can be specified as - 4.6+. The GCC from the base system - is used when it satisfies the requested version, - otherwise an appropriate compiler is built from the - port, and CC and - CXX are adjusted - accordingly. + + The port requires GCC (gcc or + g++) to build. Some ports need any + GCC version, some require modern, recent versions. It + is typically set to any (in this + case, GCC from base would be used on versions of &os; + that still have it, or lang/gcc + port would be installed when default C/C++ compiler is + Clang); or yes (means always use + stable, modern GCC from lang/gcc + port). The exact version can also be specified, with + a value such as 4.7. The minimal + required version can be specified as + 4.6+. The GCC from the base system + is used when it satisfies the requested version, + otherwise an appropriate compiler is built from the + port, and CC and + CXX are adjusted + accordingly. + + + USE_GCC will register a + build-time and a run-time dependency. + +