From fff49ec9f755c942fbd7848533a2b93c2c6f38e3 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 23 Oct 2000 15:47:35 +0000 Subject: Cleanup arch support --- Rules.mak | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/Rules.mak b/Rules.mak index d61495f29..f83e533e0 100644 --- a/Rules.mak +++ b/Rules.mak @@ -76,14 +76,21 @@ GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1includ ARFLAGS=r -CCFLAGS=$(OPTIMIZATION) -nostdinc $(CPUFLAGS) -Dlinux -D__linux__ -I$(TOPDIR)include -I$(GCCINCDIR) -I. -D__PIC__ -D__LIBC__ -CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS) -fpic +CCFLAGS=$(OPTIMIZATION) -fno-builtin -nostdinc $(CPUFLAGS) -Dlinux -D__linux__ -I$(TOPDIR)include -I$(GCCINCDIR) -I. -D__LIBC__ +# Figure out what arch to build... +ARCH = $(shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' -e 's/arm.*/arm/g') + +ifeq ($(ARCH), arm) + ARCH_CFLAGS=-fpic +endif + +CFLAGS=$(ARCH_CFLAGS) $(CCFLAGS) $(DEFS) ifeq ($(DODEBUG),true) - CFLAGS += -Wall -g -D__PIC__ + CFLAGS += -Wall -g LDFLAGS = -nostdlib else - CFLAGS += -Wall -D__PIC__ #-fomit-frame-pointer + CFLAGS += -Wall #-fomit-frame-pointer LDFLAGS = -s -nostdlib endif -- cgit v1.2.3