mirror of
https://github.com/corda/corda.git
synced 2025-01-06 05:04:20 +00:00
don't specify -march=i486 on Darwin because a later generation is assumed by default
This commit is contained in:
parent
b83314e884
commit
f75868b394
2
makefile
2
makefile
@ -240,10 +240,12 @@ ifeq ($(mode),small)
|
|||||||
cflags += -Os -g3 -DNDEBUG
|
cflags += -Os -g3 -DNDEBUG
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(platform),darwin)
|
||||||
ifeq ($(arch),i386)
|
ifeq ($(arch),i386)
|
||||||
# this is necessary to support __sync_bool_compare_and_swap:
|
# this is necessary to support __sync_bool_compare_and_swap:
|
||||||
cflags += -march=i486
|
cflags += -march=i486
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
output = -o $(1)
|
output = -o $(1)
|
||||||
as := $(cc)
|
as := $(cc)
|
||||||
|
Loading…
Reference in New Issue
Block a user