don't specify -march=i486 on Darwin because a later generation is assumed by default

This commit is contained in:
Joel Dice 2009-11-20 11:40:55 -07:00
parent b83314e884
commit f75868b394

View File

@ -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)