mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-13 05:41:26 +01:00
Replace gcc reference with 'cc' and document the default ${CC}.
MFC after: 1 week
This commit is contained in:
parent
8870ad3609
commit
a1a3d6f4c1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=289872
@ -28,7 +28,7 @@
|
|||||||
.\" @(#)mkdep.1 8.1 (Berkeley) 6/6/93
|
.\" @(#)mkdep.1 8.1 (Berkeley) 6/6/93
|
||||||
.\" $FreeBSD$
|
.\" $FreeBSD$
|
||||||
.\"
|
.\"
|
||||||
.Dd June 6, 1993
|
.Dd October 23, 2015
|
||||||
.Dt MKDEP 1
|
.Dt MKDEP 1
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -60,11 +60,13 @@ CFLAGS is the list of flags for the C compiler.
|
|||||||
.Pp
|
.Pp
|
||||||
The user has the ability to change the preprocessor and preprocessor options
|
The user has the ability to change the preprocessor and preprocessor options
|
||||||
used.
|
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
|
headers, one would use
|
||||||
.Bd -literal -offset indent
|
.Bd -literal -offset indent
|
||||||
depend:
|
depend:
|
||||||
env MKDEP_CPP="gcc -E" MKDEP_CPP_OPTS=-MM mkdep \\
|
env MKDEP_CPP="cc -E" MKDEP_CPP_OPTS=-MM mkdep \\
|
||||||
${CFLAGS} ${SRCS}
|
${CFLAGS} ${SRCS}
|
||||||
.Ed
|
.Ed
|
||||||
.Pp
|
.Pp
|
||||||
@ -101,6 +103,8 @@ module.
|
|||||||
Specifies the C compiler to use.
|
Specifies the C compiler to use.
|
||||||
The specified compiler is expected to have
|
The specified compiler is expected to have
|
||||||
options consistent with the GNU C compiler.
|
options consistent with the GNU C compiler.
|
||||||
|
The default is
|
||||||
|
.Sy cc .
|
||||||
.It Ev MKDEP_CPP
|
.It Ev MKDEP_CPP
|
||||||
Specifies the preprocessor to use.
|
Specifies the preprocessor to use.
|
||||||
The default is "${CC} -E".
|
The default is "${CC} -E".
|
||||||
|
Loading…
Reference in New Issue
Block a user