specify -march=i486 for x86_32 to support __sync_bool_compare_and_swap

This commit is contained in:
Joel Dice 2009-11-19 18:51:43 -07:00
parent fdde34694c
commit 07f40a07e1

View File

@ -240,6 +240,11 @@ ifeq ($(mode),small)
cflags += -Os -g3 -DNDEBUG
endif
ifeq ($(arch),i386)
# this is necessary to support __sync_bool_compare_and_swap:
cflags += -march=i486
endif
output = -o $(1)
as := $(cc)
ld := $(cc)