Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/mvme68k/conf Specify both -Wa, -march=68030 and -Wa, ...



details:   https://anonhg.NetBSD.org/src/rev/5e464bfe6aa0
branches:  trunk
changeset: 795252:5e464bfe6aa0
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Sat Apr 05 11:07:30 2014 +0000

description:
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?

diffstat:

 sys/arch/mvme68k/conf/Makefile.mvme68k |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ef04bab37ee0 -r 5e464bfe6aa0 sys/arch/mvme68k/conf/Makefile.mvme68k
--- a/sys/arch/mvme68k/conf/Makefile.mvme68k    Sat Apr 05 10:35:09 2014 +0000
+++ b/sys/arch/mvme68k/conf/Makefile.mvme68k    Sat Apr 05 11:07:30 2014 +0000
@@ -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 @@
 .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



Home | Main Index | Thread Index | Old Index