From 1a4eb2ff5c32626a4a0d7558d1a70e45cca2b5a4 Mon Sep 17 00:00:00 2001 From: stefan Date: Mon, 25 Oct 2010 17:02:06 +0000 Subject: [PATCH] - 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 --- Makefile.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.example b/Makefile.example index 5d0f7ca8..bb8ecd19 100644 --- a/Makefile.example +++ b/Makefile.example @@ -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