diff options
author | peter <peter@FreeBSD.org> | 2002-03-19 10:51:57 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-03-19 10:51:57 +0000 |
commit | d508cde2ba6413b8d1160ee49830a47889f31c32 (patch) | |
tree | 69c3d00054b8a17c94e938f35fe36935f5469604 /sys/boot/ia64 | |
parent | 497bf7e88897236bcf8bf65604948fcb68be896b (diff) | |
download | FreeBSD-src-d508cde2ba6413b8d1160ee49830a47889f31c32.zip FreeBSD-src-d508cde2ba6413b8d1160ee49830a47889f31c32.tar.gz |
Add -ffreestanding to avoid printf/puts/putchar conversions
Diffstat (limited to 'sys/boot/ia64')
-rw-r--r-- | sys/boot/ia64/libski/Makefile | 1 | ||||
-rw-r--r-- | sys/boot/ia64/ski/Makefile | 1 | ||||
-rw-r--r-- | sys/boot/ia64/skiload/Makefile | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/sys/boot/ia64/libski/Makefile b/sys/boot/ia64/libski/Makefile index 30bb7e5..7b20910 100644 --- a/sys/boot/ia64/libski/Makefile +++ b/sys/boot/ia64/libski/Makefile @@ -15,6 +15,7 @@ CFLAGS+= -I${.CURDIR}/../include/${MACHINE_ARCH} CFLAGS+= -I${.CURDIR}/../../../../lib/libstand/ CFLAGS+= -I${.CURDIR}/../../efi/include CFLAGS+= -I${.CURDIR}/../../efi/include/${MACHINE_ARCH} +CFLAGS+= -ffreestanding # Pick up the bootstrap header for some interface items CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../../.. -I. diff --git a/sys/boot/ia64/ski/Makefile b/sys/boot/ia64/ski/Makefile index 1ba911d..71447ba 100644 --- a/sys/boot/ia64/ski/Makefile +++ b/sys/boot/ia64/ski/Makefile @@ -41,6 +41,7 @@ CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR} CFLAGS+= -I${.CURDIR}/../../.. -I. CFLAGS+= -I${.CURDIR}/../libski CFLAGS+= -DLOADER +CFLAGS+= -ffreestanding LDFLAGS= -nostdlib -T ${.CURDIR}/ldscript.ia64 diff --git a/sys/boot/ia64/skiload/Makefile b/sys/boot/ia64/skiload/Makefile index 1ba911d..71447ba 100644 --- a/sys/boot/ia64/skiload/Makefile +++ b/sys/boot/ia64/skiload/Makefile @@ -41,6 +41,7 @@ CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR} CFLAGS+= -I${.CURDIR}/../../.. -I. CFLAGS+= -I${.CURDIR}/../libski CFLAGS+= -DLOADER +CFLAGS+= -ffreestanding LDFLAGS= -nostdlib -T ${.CURDIR}/ldscript.ia64 |