diff options
author | Jack Lloyd <[email protected]> | 2020-11-11 07:12:50 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2020-11-11 07:15:17 -0500 |
commit | 4622550daa79dd2695a765c9278626d2b4fa4bea (patch) | |
tree | 19a56fbd06c920635d53a72d2c0e58646102f234 /src/scripts/ci_build.py | |
parent | a68971a742d966002322d993d4b7f8e3accd11af (diff) |
Disable using Boost on macOS
It seems it is not possible to use Boost without triggering warnings
under the latest XCode which prevents using -Werror
Diffstat (limited to 'src/scripts/ci_build.py')
-rwxr-xr-x | src/scripts/ci_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 1d360ef0a..8bcee4850 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -233,7 +233,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, if target_os in ['osx', 'ios']: flags += ['--with-commoncrypto'] - if target_os == 'osx' or target == 'coverage': + if target == 'coverage': flags += ['--with-boost'] if target_os == 'windows' and target in ['shared', 'static']: |