summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2017-02-19 22:11:29 +0100
committerAndy Polyakov <appro@openssl.org>2017-02-21 22:39:00 +0100
commitfe9aa7642c85190c1ec21b2965ce7308a667f19e (patch)
tree1bb6e93f823bf1d28929215f81afb96899e9e4ac /appveyor.yml
parent1b8f19379a521ec11ce37e12316dd3edc0acfb82 (diff)
appveyor.yml: engage VC-WIN64A-masm.
One of the reasons for why masm/ml64 is not [fully] supported is that it's problematic to support multiple versions. But latest one usually works and/or it's lesser problem to make it work. So idea here is to have a "whistle" when it breaks, so that problems can be evaluated as they emerge. It's kind of "best effort" thing, as opposite to "full support". Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index af2bfede52..d47c6cd6d7 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -14,10 +14,10 @@ before_build:
- ps: >-
If ($env:Platform -Match "x86") {
$env:VCVARS_PLATFORM="x86"
- $env:TARGET="VC-WIN32"
+ $env:TARGET="VC-WIN32 no-asm"
} Else {
$env:VCVARS_PLATFORM="amd64"
- $env:TARGET="VC-WIN64A"
+ $env:TARGET="VC-WIN64A-masm"
}
- ps: >-
If ($env:Configuration -Match "shared") {
@@ -29,7 +29,7 @@ before_build:
- call "%VSCOMNTOOLS%\..\..\VC\vcvarsall.bat" %VCVARS_PLATFORM%
- mkdir _build
- cd _build
- - perl ..\Configure %TARGET% no-asm %SHARED%
+ - perl ..\Configure %TARGET% %SHARED%
- cd ..
build_script: