diff options
author | Jack Lloyd <[email protected]> | 2018-09-04 19:30:16 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-09-04 19:30:16 -0400 |
commit | 3b336f2a80053d472380b29aab06ad0acb66d3f1 (patch) | |
tree | 04ab9a62e4d06095376faa6f983bda1627cb2f9a /src/scripts/ci_build.py | |
parent | ad2cad62e0fcd186d489e56a136e376c0fa3a8f0 (diff) | |
parent | c81c5281eef4bc467cc1e101bd99438198b703c7 (diff) |
Merge GH #1667 Add hashing with CommonCrypto
Diffstat (limited to 'src/scripts/ci_build.py')
-rwxr-xr-x | src/scripts/ci_build.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 66d537d53..fe73156af 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': |