Module Name: src
Committed By: tsutsui
Date: Sat Apr 5 11:07:30 UTC 2014
Modified Files:
src/sys/arch/mvme68k/conf: Makefile.mvme68k
Log Message:
Specify both -Wa,-march=68030 and -Wa,-mcpu=68030 in -m68060 case for gcc45.
Now VME177 builds with both gcc45 and gcc48
(though untested on the real machines).
XXX: is it really worth to use -m68060 (instead of -m68020-60)
for kernel binaries?
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/arch/mvme68k/conf/Makefile.mvme68k
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/mvme68k/conf/Makefile.mvme68k
diff -u src/sys/arch/mvme68k/conf/Makefile.mvme68k:1.64 src/sys/arch/mvme68k/conf/Makefile.mvme68k:1.65
--- src/sys/arch/mvme68k/conf/Makefile.mvme68k:1.64 Sun Mar 30 15:54:37 2014
+++ src/sys/arch/mvme68k/conf/Makefile.mvme68k Sat Apr 5 11:07:30 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.mvme68k,v 1.64 2014/03/30 15:54:37 tsutsui Exp $
+# $NetBSD: Makefile.mvme68k,v 1.65 2014/04/05 11:07:30 tsutsui Exp $
# Makefile for NetBSD
#
@@ -40,7 +40,7 @@ CMACHFLAGS= -m68030
.endif
.else
.if empty(IDENT:M-DMVME147) && empty(IDENT:M-DMVME162) && empty(IDENT:M-DMVME167)
-CMACHFLAGS= -m68060 -Wa,-mcpu=68030 -Wa,-m68851
+CMACHFLAGS= -m68060 -Wa,-march=68030 -Wa,-mcpu=68030 -Wa,-m68851
.else
CMACHFLAGS= -m68020-60 -Wa,-mcpu=68030 -Wa,-m68851
.endif