Module Name: src
Committed By: tsutsui
Date: Sun Dec 18 04:51:13 UTC 2011
Modified Files:
src/sys/arch/atari/stand: Makefile.booters
Log Message:
Explicitly specify -m68020-60 to avoid possible 060SP instructions,
especially 64 bit integer mul/div ops in standalone bootloaders. From x68k.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/atari/stand/Makefile.booters
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/atari/stand/Makefile.booters
diff -u src/sys/arch/atari/stand/Makefile.booters:1.2 src/sys/arch/atari/stand/Makefile.booters:1.3
--- src/sys/arch/atari/stand/Makefile.booters:1.2 Sun Mar 15 11:45:30 2009
+++ src/sys/arch/atari/stand/Makefile.booters Sun Dec 18 04:51:12 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.booters,v 1.2 2009/03/15 11:45:30 tsutsui Exp $
+# $NetBSD: Makefile.booters,v 1.3 2011/12/18 04:51:12 tsutsui Exp $
BINDIR= /usr/mdec/${BTYPE:tl}
@@ -11,5 +11,6 @@ CPPFLAGS+= -D__daddr_t=int32_t
CFLAGS+= -ffreestanding
CFLAGS+= -Wall
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith
+CFLAGS+= -m68020-60
.include <bsd.klinks.mk>