- Add MACHINE_GNU_ARCH entries for mipseb and mipsel. Temporarily remap
mips to mipsel. - Remove the unused definition of NOSHLIB for powerpc. NOPIC is being used for this purpose.
This commit is contained in:
parent
1f86e5830d
commit
aaafdd394a
@ -1,4 +1,4 @@
|
||||
# $NetBSD: bsd.README,v 1.40 1998/07/22 18:22:35 perry Exp $
|
||||
# $NetBSD: bsd.README,v 1.41 1998/07/27 00:58:05 tv Exp $
|
||||
# @(#)bsd.README 8.2 (Berkeley) 4/2/94
|
||||
|
||||
This is the README file for the new make "include" files for the BSD
|
||||
@ -219,9 +219,6 @@ NOPIC Do not build PIC versions of system libraries, and
|
||||
|
||||
NOLINT Do not build lint libraries.
|
||||
|
||||
NOSHLIB Do not build shared libraries [set if ${MACHINE_ARCH}
|
||||
is "powerpc", unset otherwise].
|
||||
|
||||
OBJECT_FMT Object file format. [set to "ELF" on ports that use
|
||||
ELF -- currently if ${MACHINE_ARCH} is "alpha", "mips"
|
||||
or "powerpc" or set to "a.out" on other ports].
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: bsd.own.mk,v 1.73 1998/07/22 18:21:39 perry Exp $
|
||||
# $NetBSD: bsd.own.mk,v 1.74 1998/07/27 00:58:05 tv Exp $
|
||||
|
||||
.if !defined(_BSD_OWN_MK_)
|
||||
_BSD_OWN_MK_=1
|
||||
@ -107,10 +107,9 @@ OBJECT_FMT?=a.out
|
||||
# Uncomment to turn off lint library generation.
|
||||
#NOLINT=
|
||||
|
||||
# Profiling and shared libraries don't work on PowerPC yet.
|
||||
# Profiling doesn't work on PowerPC yet.
|
||||
.if (${MACHINE_ARCH} == "powerpc")
|
||||
NOPROFILE=
|
||||
NOSHLIB=
|
||||
.endif
|
||||
|
||||
# GNU sources and packages sometimes see architecture names differently.
|
||||
@ -120,11 +119,14 @@ GNU_ARCH.alpha=alpha
|
||||
GNU_ARCH.arm32=arm
|
||||
GNU_ARCH.i386=i386
|
||||
GNU_ARCH.m68k=m68k
|
||||
GNU_ARCH.mips=mips
|
||||
GNU_ARCH.mipseb=mipseb
|
||||
GNU_ARCH.mipsel=mipsel
|
||||
GNU_ARCH.ns32k=ns32k
|
||||
GNU_ARCH.powerpc=powerpc
|
||||
GNU_ARCH.sparc=sparc
|
||||
GNU_ARCH.vax=vax
|
||||
# XXX temporary compatibility
|
||||
GNU_ARCH.mips=mipsel
|
||||
MACHINE_GNU_ARCH=${GNU_ARCH.${MACHINE_ARCH}}
|
||||
|
||||
TARGETS+= all clean cleandir depend includes install lint obj regress \
|
||||
|
Loading…
Reference in New Issue
Block a user