diff options
author | Jack Lloyd <[email protected]> | 2018-10-06 14:02:32 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-10-06 14:02:32 -0400 |
commit | f396fc92bab378440741174fdbb9144dccb0f90d (patch) | |
tree | 1f86ca94e4cf7e9ae8df426053f894e22879f44a /src/scripts | |
parent | aa2091357c08c0b49ddf4bedb80168add984feb6 (diff) |
Alas, Clang in Travis is also too old for this to work
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 c5b00579c..af50877e2 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -77,7 +77,7 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, ccache, ro # much faster compiling via the amalgamation than individual files. flags += ['--amalgamation'] - if target_cc == 'clang': + if target_cc == 'msvc': flags += ['--single-amalgamation-file'] if target in ['bsi', 'nist']: |