Source-Changes-HG archive

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

[src/trunk]: src/sbin -O0 for pass1.c and vax



details:   https://anonhg.NetBSD.org/src/rev/8012e981bb2f
branches:  trunk
changeset: 344356:8012e981bb2f
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Mar 23 21:43:33 2016 +0000

description:
-O0 for pass1.c and vax

diffstat:

 sbin/fsck_ffs/Makefile |  5 ++++-
 sbin/fsdb/Makefile     |  6 +++++-
 2 files changed, 9 insertions(+), 2 deletions(-)

diffs (37 lines):

diff -r 299b5479bf21 -r 8012e981bb2f sbin/fsck_ffs/Makefile
--- a/sbin/fsck_ffs/Makefile    Wed Mar 23 21:39:42 2016 +0000
+++ b/sbin/fsck_ffs/Makefile    Wed Mar 23 21:43:33 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.45 2014/07/05 19:22:03 dholland Exp $
+#      $NetBSD: Makefile,v 1.46 2016/03/23 21:43:33 christos Exp $
 #      @(#)Makefile    8.2 (Berkeley) 4/27/95
 
 .include <bsd.own.mk>
@@ -35,6 +35,9 @@
 .if ${MACHINE_ARCH} == "m68000"
 COPTS.pass1.c+=        -fno-tree-fre -fno-tree-lrs
 .endif
+.if ${MACHINE_ARCH} == "vax"
+COPTS.pass1.c+=        -O0
+.endif
 
 SUBDIR+=SMM.doc
 
diff -r 299b5479bf21 -r 8012e981bb2f sbin/fsdb/Makefile
--- a/sbin/fsdb/Makefile        Wed Mar 23 21:39:42 2016 +0000
+++ b/sbin/fsdb/Makefile        Wed Mar 23 21:43:33 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.37 2015/04/15 19:13:47 mrg Exp $
+#      $NetBSD: Makefile,v 1.38 2016/03/23 21:43:33 christos Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/5/93
 
 .include <bsd.own.mk>
@@ -39,4 +39,8 @@
 COPTS.pass1.c+=        -fno-tree-fre -fno-tree-lrs
 .endif
 
+.if ${MACHINE_ARCH} == "vax"
+COPTS.pass1.c+=        -O0
+.endif
+
 .include <bsd.prog.mk>



Home | Main Index | Thread Index | Old Index