From ab27bbe9b2ec5051244749b36ed87e8de49e8be3 Mon Sep 17 00:00:00 2001 From: matt Date: Sat, 2 Dec 2000 20:27:37 +0000 Subject: [PATCH] Need to add -EB for ASFLAGS as well. Don't use -EB in LINKFLAGS but add -EB to LD so that libkern/libcompat get it as well. --- sys/arch/sgimips/conf/Makefile.sgimips | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/sgimips/conf/Makefile.sgimips b/sys/arch/sgimips/conf/Makefile.sgimips index 353e5646c9b4..2a970acef434 100644 --- a/sys/arch/sgimips/conf/Makefile.sgimips +++ b/sys/arch/sgimips/conf/Makefile.sgimips @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.sgimips,v 1.2 2000/12/02 06:23:48 matt Exp $ +# $NetBSD: Makefile.sgimips,v 1.3 2000/12/02 20:27:37 matt Exp $ # Makefile for NetBSD # @@ -60,9 +60,10 @@ CWARNFLAGS+= -Wno-main GP?= -G 0 CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} ${GP} \ -mno-abicalls -mno-half-pic -EB -AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE +AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE -EB LINKFLAGS= -T ${MIPS}/conf/kern.ldscript.be -Ttext ${TEXTADDR} \ -e start ${GP} +LD+= -EB STRIPFLAGS= -g -X -x %INCLUDES