diff options
author | obrien <obrien@FreeBSD.org> | 2002-12-21 02:03:31 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-12-21 02:03:31 +0000 |
commit | b5dd8790dcb56a491989dfc09a86071f56ac70e7 (patch) | |
tree | 8b95485c23520d77df6d633c1376cf2c06cdef1a /sys/boot/i386/boot2/Makefile | |
parent | b50430dafaf77b66155ba5146094cf18db2e970f (diff) | |
download | FreeBSD-src-b5dd8790dcb56a491989dfc09a86071f56ac70e7.zip FreeBSD-src-b5dd8790dcb56a491989dfc09a86071f56ac70e7.tar.gz |
-mno-align-long-strings can make things smaller, so lets use it in hopes
that it does here.
Diffstat (limited to 'sys/boot/i386/boot2/Makefile')
-rw-r--r-- | sys/boot/i386/boot2/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/boot/i386/boot2/Makefile b/sys/boot/i386/boot2/Makefile index ab0ea2f..ec7a536 100644 --- a/sys/boot/i386/boot2/Makefile +++ b/sys/boot/i386/boot2/Makefile @@ -36,6 +36,7 @@ BOOT2_UFS?= UFS1_AND_UFS2 CFLAGS= -elf -ffreestanding -Os -fno-builtin \ -fno-guess-branch-probability -fomit-frame-pointer\ + -mno-align-long-strings \ -mrtd \ -D${BOOT2_UFS} \ -I${.CURDIR}/../../common \ |