Change mips to mipsel, and disable mipseb until a suitable _mipseb.mk
exists with the proper defines to default to big-endian.
This commit is contained in:
parent
e13ccaa4be
commit
0e1307776f
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.17 1998/07/25 11:19:24 mycroft Exp $
|
||||
# $NetBSD: Makefile,v 1.18 1998/07/27 02:35:13 tv Exp $
|
||||
|
||||
TOP= $(.CURDIR)/../..
|
||||
dist= $(TOP)/dist
|
||||
|
@ -6,12 +6,12 @@ srcdir= $(dist)/gdb
|
|||
|
||||
.PATH: $(srcdir)
|
||||
|
||||
.if (${MACHINE_ARCH} != "powerpc")
|
||||
.if (${MACHINE_ARCH} != "powerpc") && (${MACHINE_ARCH} != "mipseb")
|
||||
|
||||
PROG= gdb
|
||||
|
||||
# Override this to build a cross-debugger.
|
||||
TARGET_ARCH?=$(MACHINE_ARCH)
|
||||
TARGET_ARCH?=$(MACHINE_ARCH:S/^mips$/mipsel/)
|
||||
|
||||
# Debugging?
|
||||
# CPPFLAGS=-g
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: _mips.mk,v 1.6 1997/10/20 16:05:29 gwr Exp $
|
||||
# $NetBSD: _mipsel.mk,v 1.1 1998/07/27 02:35:13 tv Exp $
|
||||
|
||||
# From gdb/config/mips/nbsd.mh
|
||||
NM_FILE= config/mips/nm-nbsd.h
|
Loading…
Reference in New Issue