diff options
author | Simon Warta <[email protected]> | 2015-07-18 22:49:28 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-21 20:06:18 +0200 |
commit | a631f01cc981773d0756334d95ddb3e8485b2d00 (patch) | |
tree | 57af278a132019f0ea91ca9616875f9329e90932 /src/scripts/ci | |
parent | 8e552a417cc895e9a20eadc2c3684c5e3925e0db (diff) |
Adjust MSVC compile flags
/FS is needed for parallel builds
/bigobj is needed for amalgamation build. Remove explicit setting from
appveyor
/DEBUG is a parameter, not a precompiler constant
Conflicts:
src/build-data/cc/msvc.txt
Diffstat (limited to 'src/scripts/ci')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index df8d4d834..a2fe822a8 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -4,7 +4,7 @@ install: - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 build_script: - - python configure.py --disable-shared --via-amalgamation --cpu=x86_32 --cc=msvc --cc-abi-flags="/bigobj" + - python configure.py --disable-shared --via-amalgamation --cpu=x86_32 --cc=msvc - nmake - botan-test - nmake install |