diff options
author | jkh <jkh@FreeBSD.org> | 1997-09-10 13:35:33 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1997-09-10 13:35:33 +0000 |
commit | 18dec6f7c19d54cf6a8ea2b1dfb29f9d0032358b (patch) | |
tree | d06a0d3c6e0b4ce19fb222692cf1f02701faa27f /etc/defaults | |
parent | adb1bbd53fc3af34ba996c57177768fe3f7b9f56 (diff) | |
download | FreeBSD-src-18dec6f7c19d54cf6a8ea2b1dfb29f9d0032358b.zip FreeBSD-src-18dec6f7c19d54cf6a8ea2b1dfb29f9d0032358b.tar.gz |
By popular request, change the default suggested value for CFLAGS
and also note that COPTFLAGS is _just_ for the kernel and CFLAGS just
for userland.
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/make.conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/etc/defaults/make.conf b/etc/defaults/make.conf index d935024..69f2226 100644 --- a/etc/defaults/make.conf +++ b/etc/defaults/make.conf @@ -1,4 +1,4 @@ -# $Id: make.conf,v 1.48 1997/05/03 19:58:39 andreas Exp $ +# $Id: make.conf,v 1.49 1997/06/09 05:38:41 bde Exp $ # # This file, if present, will be read by make (see /usr/share/mk/sys.mk). # It allows you to override macro definitions to make without changing @@ -11,7 +11,7 @@ # # One, and probably the most common, use could be: # -#CFLAGS= -O2 -m486 -pipe +#CFLAGS= -O -pipe # # Another useful entry is # @@ -22,7 +22,8 @@ # (they aren't needed/necessary) #OBJLINK= yes # -# To compile the kernel with special optimisations, you can use this: +# To compile just the kernel with special optimisations, you should use +# this instead of CFLAGS (which is not applicable to kernel builds anyway): # #COPTFLAGS= -O -pipe # |