diff options
author | Robert Nagy <robert@cvs.openbsd.org> | 2017-07-25 13:32:15 +0000 |
---|---|---|
committer | Robert Nagy <robert@cvs.openbsd.org> | 2017-07-25 13:32:15 +0000 |
commit | 8649e94e762e89c9b935d8d42b2371ebb2012bdf (patch) | |
tree | 60c6ab496824183563ac495e3107423340fcd95b /distrib/amd64/ramdisk_cd | |
parent | 5a56edb633ad3fcab435ac1c5889398ccefeb9ff (diff) |
change -Os to -Oz all around the tree
clang optimizes better for size with -Oz so use that as a default to avoid
overflowing the ramdisk floppies. gcc now accepts -Oz as an alias for -Os.
ok kettenis@
Diffstat (limited to 'distrib/amd64/ramdisk_cd')
-rw-r--r-- | distrib/amd64/ramdisk_cd/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/amd64/ramdisk_cd/Makefile.inc b/distrib/amd64/ramdisk_cd/Makefile.inc index 941716fac3b..9ecce864e28 100644 --- a/distrib/amd64/ramdisk_cd/Makefile.inc +++ b/distrib/amd64/ramdisk_cd/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 2017/06/03 22:25:19 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.6 2017/07/25 13:32:14 robert Exp $ TOP= ${.CURDIR}/.. @@ -78,7 +78,7 @@ bsd.rd: mr.fs bsd rdsetroot bsd: cd ${.CURDIR}/../../../sys/arch/amd64/compile/${RAMDISK} && \ - su ${BUILDUSER} -c '${MAKE} config && ${MAKE} clean && env COPTS=-Os ${MAKE}' + su ${BUILDUSER} -c '${MAKE} config && ${MAKE} clean && env COPTS=-Oz ${MAKE}' cp -p ${.CURDIR}/../../../sys/arch/amd64/compile/${RAMDISK}/obj/bsd bsd mr.fs: instbin |