From f75868b39416bad0095d79c00a07a4adda25cec1 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 20 Nov 2009 11:40:55 -0700 Subject: [PATCH] don't specify -march=i486 on Darwin because a later generation is assumed by default --- makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefile b/makefile index 4cb9d305b4..9376afadef 100644 --- a/makefile +++ b/makefile @@ -240,10 +240,12 @@ ifeq ($(mode),small) cflags += -Os -g3 -DNDEBUG endif +ifneq ($(platform),darwin) ifeq ($(arch),i386) # this is necessary to support __sync_bool_compare_and_swap: cflags += -march=i486 endif +endif output = -o $(1) as := $(cc)