mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
fix build on old Xcode versions
This commit is contained in:
parent
9ea6a28383
commit
7d8def84e0
8
makefile
8
makefile
@ -326,8 +326,12 @@ ifeq ($(platform),darwin)
|
||||
endif
|
||||
|
||||
version-script-flag =
|
||||
lflags = $(common-lflags) -ldl -framework CoreFoundation \
|
||||
-Wl,-compatibility_version,1.0.0
|
||||
lflags = $(common-lflags) -ldl -framework CoreFoundation
|
||||
|
||||
ifeq (,$(shell ld -v | grep cctools))
|
||||
lflags += -Wl,-compatibility_version,1.0.0
|
||||
endif
|
||||
|
||||
ifneq ($(arch),arm)
|
||||
lflags += -framework CoreServices -framework SystemConfiguration \
|
||||
-framework Security
|
||||
|
Loading…
Reference in New Issue
Block a user