Date: Fri, 4 Dec 2015 18:04:56 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r291788 - stable/10/usr.bin/mkdep Message-ID: <201512041804.tB4I4u3w015975@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri Dec 4 18:04:56 2015 New Revision: 291788 URL: https://svnweb.freebsd.org/changeset/base/291788 Log: MFC r289872: Replace gcc reference with 'cc' and document the default ${CC}. Modified: stable/10/usr.bin/mkdep/mkdep.1 Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.bin/mkdep/mkdep.1 ============================================================================== --- stable/10/usr.bin/mkdep/mkdep.1 Fri Dec 4 18:04:45 2015 (r291787) +++ stable/10/usr.bin/mkdep/mkdep.1 Fri Dec 4 18:04:56 2015 (r291788) @@ -28,7 +28,7 @@ .\" @(#)mkdep.1 8.1 (Berkeley) 6/6/93 .\" $FreeBSD$ .\" -.Dd June 6, 1993 +.Dd October 23, 2015 .Dt MKDEP 1 .Os .Sh NAME @@ -60,11 +60,13 @@ CFLAGS is the list of flags for the C co .Pp The user has the ability to change the preprocessor and preprocessor options used. -For instance, to use gcc as the preprocessor and to ignore system +For instance, to use +.Sy cc +as the preprocessor and to ignore system headers, one would use .Bd -literal -offset indent depend: - env MKDEP_CPP="gcc -E" MKDEP_CPP_OPTS=-MM mkdep \\ + env MKDEP_CPP="cc -E" MKDEP_CPP_OPTS=-MM mkdep \\ ${CFLAGS} ${SRCS} .Ed .Pp @@ -101,6 +103,8 @@ module. Specifies the C compiler to use. The specified compiler is expected to have options consistent with the GNU C compiler. +The default is +.Sy cc . .It Ev MKDEP_CPP Specifies the preprocessor to use. The default is "${CC} -E".
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512041804.tB4I4u3w015975>