- add compiler flag -march=i386

- this flags avoids the generation of SSE or MMX code


git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@198 315a16e6-25f9-4109-90ae-ca3045a26c18
This commit is contained in:
stefan 2010-10-25 17:02:06 +00:00
parent ae16dc414b
commit 1a4eb2ff5c

View file

@ -10,7 +10,7 @@ export ASM = nasm
export ASMFLAGS = -felf32
export INCLUDE = -I$(TOPDIR)/include -I$(TOPDIR)/arch/$(ARCH)/include -I$(TOPDIR)/lwip/src/include -I$(TOPDIR)/lwip/src/include/ipv4
export CC = gcc
export CFLAGS = -m32 -Wall -O2 -fno-zero-initialized-in-bss -fno-builtin-function -fstrength-reduce -fomit-frame-pointer -finline-functions -nostdinc $(INCLUDE) -fno-stack-protector
export CFLAGS = -m32 -march=i386 -Wall -O2 -fno-zero-initialized-in-bss -fno-builtin-function -fstrength-reduce -fomit-frame-pointer -finline-functions -nostdinc $(INCLUDE) -fno-stack-protector
export AR = ar
export ARFLAGS = rsv
export RM = rm -rf