diff options
author | benno <benno@FreeBSD.org> | 2001-11-12 10:12:00 +0000 |
---|---|---|
committer | benno <benno@FreeBSD.org> | 2001-11-12 10:12:00 +0000 |
commit | c6163a2ce079403878da844a612869e278059a75 (patch) | |
tree | d68920978406f9ec7e25d6adce2acb5f782459d5 /sys/conf/Makefile.powerpc | |
parent | 8425582821f33d07a806b8ce4a831cfe0ca8d95b (diff) | |
download | FreeBSD-src-c6163a2ce079403878da844a612869e278059a75.zip FreeBSD-src-c6163a2ce079403878da844a612869e278059a75.tar.gz |
-msoft-float must always be turned on when compiling the PowerPC kernel.
Diffstat (limited to 'sys/conf/Makefile.powerpc')
-rw-r--r-- | sys/conf/Makefile.powerpc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index a6e55e0..a135913 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -38,9 +38,11 @@ _OS!=uname .if ${_OS} != "FreeBSD" CWARNFLAGS=-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \ -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -COPTS+= -D__ELF__ -D__FreeBSD__ -msoft-float +COPTS+= -D__ELF__ -D__FreeBSD__ .endif +COPTS+= -msoft-float + %BEFORE_DEPEND %OBJS |