Sun Dec 18 04:51:13 2011 UTC ()
Explicitly specify -m68020-60 to avoid possible 060SP instructions,
especially 64 bit integer mul/div ops in standalone bootloaders. From x68k.


(tsutsui)
diff -r1.2 -r1.3 src/sys/arch/atari/stand/Makefile.booters

cvs diff -r1.2 -r1.3 src/sys/arch/atari/stand/Makefile.booters (expand / switch to unified diff)

--- src/sys/arch/atari/stand/Makefile.booters 2009/03/15 11:45:30 1.2
+++ src/sys/arch/atari/stand/Makefile.booters 2011/12/18 04:51:12 1.3
@@ -1,15 +1,16 @@ @@ -1,15 +1,16 @@
1# $NetBSD: Makefile.booters,v 1.2 2009/03/15 11:45:30 tsutsui Exp $ 1# $NetBSD: Makefile.booters,v 1.3 2011/12/18 04:51:12 tsutsui Exp $
2 2
3BINDIR= /usr/mdec/${BTYPE:tl} 3BINDIR= /usr/mdec/${BTYPE:tl}
4 4
5DBG= 5DBG=
6COPTS= -Os -fomit-frame-pointer -fno-function-cse -fstrength-reduce 6COPTS= -Os -fomit-frame-pointer -fno-function-cse -fstrength-reduce
7 7
8CPPFLAGS+= -D_STANDALONE -DHEAP_VARIABLE 8CPPFLAGS+= -D_STANDALONE -DHEAP_VARIABLE
9CPPFLAGS+= -D__daddr_t=int32_t 9CPPFLAGS+= -D__daddr_t=int32_t
10 10
11CFLAGS+= -ffreestanding 11CFLAGS+= -ffreestanding
12CFLAGS+= -Wall 12CFLAGS+= -Wall
13CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith 13CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
 14CFLAGS+= -m68020-60
14 15
15.include <bsd.klinks.mk> 16.include <bsd.klinks.mk>