aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-09-04 10:33:46 -0400
committerJack Lloyd <[email protected]>2018-09-04 10:33:46 -0400
commitc81c5281eef4bc467cc1e101bd99438198b703c7 (patch)
treeec82d63e5b2c8cbbf31e2e55292aa22acede28c5
parentffb5de527a02fc990112bdf096c705abadfc09bd (diff)
Try adding commoncrypto to macOS and iOS builds
-rwxr-xr-xsrc/scripts/ci_build.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py
index 6626ea18e..9f2f67d4d 100755
--- a/src/scripts/ci_build.py
+++ b/src/scripts/ci_build.py
@@ -170,12 +170,16 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro
if target_os in ['osx', 'linux']:
flags += ['--with-bzip2', '--with-sqlite', '--with-zlib']
+ if target_os in ['osx', 'ios']:
+ flags += ['--with-commoncrypto']
+
if target_os == 'osx':
# Test Boost on OS X
flags += ['--with-boost']
# Travis has 10.12 as default image
flags += ['--with-os-features=getentropy']
- elif target_os == 'linux':
+
+ if target_os == 'linux':
flags += ['--with-lzma']
if target_os == 'linux':