Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/hpcmips/conf Allow the codegen option to be specifi...



details:   https://anonhg.NetBSD.org/src/rev/305ec979ac9b
branches:  trunk
changeset: 565397:305ec979ac9b
user:      tv <tv%NetBSD.org@localhost>
date:      Tue Apr 06 16:37:58 2004 +0000

description:
Allow the codegen option to be specified in the config file rather than
being fixed at -mips2, by setting "makeoptions MIPSFLAGS".

diffstat:

 sys/arch/hpcmips/conf/Makefile.hpcmips.inc |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (12 lines):

diff -r 632d5c68c66b -r 305ec979ac9b sys/arch/hpcmips/conf/Makefile.hpcmips.inc
--- a/sys/arch/hpcmips/conf/Makefile.hpcmips.inc        Tue Apr 06 16:23:33 2004 +0000
+++ b/sys/arch/hpcmips/conf/Makefile.hpcmips.inc        Tue Apr 06 16:37:58 2004 +0000
@@ -1,4 +1,5 @@
-#      $NetBSD: Makefile.hpcmips.inc,v 1.1 2000/12/20 04:12:42 matt Exp $
+#      $NetBSD: Makefile.hpcmips.inc,v 1.2 2004/04/06 16:37:58 tv Exp $
 
-CFLAGS+=       -mips2
-AFLAGS+=       -mips2
+MIPSFLAGS?=    -mips2
+CFLAGS+=       ${MIPSFLAGS}
+AFLAGS+=       ${MIPSFLAGS}



Home | Main Index | Thread Index | Old Index