diff options
author | Jack Lloyd <[email protected]> | 2017-12-17 06:46:22 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-12-17 14:59:21 -0500 |
commit | eb76255d74f8281f0edd6acc0df6086a29c6d1d4 (patch) | |
tree | 3da4a3c2323f4f738bd74b6a68e30768c59bd907 /src/scripts | |
parent | 33c2ea480722bd9fc3eca969e24daf601843c659 (diff) |
Try to debug Boost build failure - amalgamation problem?
Diffstat (limited to 'src/scripts')
-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 011e9b3fc..69617dee0 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -71,7 +71,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro if target in ['mini-static', 'mini-shared']: flags += ['--minimized-build', '--enable-modules=system_rng,sha2_32,sha2_64,aes'] - if target == 'shared': + if target == 'shared' and target_os != 'osx': # Enabling amalgamation build for shared is somewhat arbitrary, but we want to test it # somewhere. In addition the majority of the Windows builds are shared, and MSVC is # much faster compiling via the amalgamation than individual files. |