Lines Matching +full:no +full:- +full:bulk
2 - Visual Studio 2017
5 - x64
6 - x86
11 - VSVER: 15
14 - shared
15 - minimal
18 -
21 - master
23 - shared
24 - plain
25 - minimal
28 - ps: >-
29 Install-Module VSSetup -Scope CurrentUser
30 - ps: >-
31 Get-VSSetupInstance -All
32 - ps: >-
33 If ($env:Platform -Match "x86") {
35 $env:TARGET="VC-WIN32 no-asm --strict-warnings"
38 $env:TARGET="VC-WIN64A-masm"
40 - ps: >-
41 If ($env:Configuration -Match "shared") {
42 $env:CONFIG_OPTS="enable-fips"
43 } ElseIf ($env:Configuration -Match "minimal") {
44 $env:CONFIG_OPTS="no-bulk no-asm -DOPENSSL_SMALL_FOOTPRINT"
46 $env:CONFIG_OPTS="no-fips no-shared"
48 …- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall…
49 - mkdir _build
50 - cd _build
51 - perl ..\Configure %TARGET% no-makedepend %CONFIG_OPTS%
52 - perl configdata.pm --dump
53 - cd ..
54 - ps: >-
55 If ($env:BUILDONLY -or $env:MAKEVERBOSE) {
60 - ps: >-
61 gci env:* | sort-object name
64 - cd _build
65 - "%NMAKE% build_all_generated"
66 - "%NMAKE% PERL=no-perl"
67 - cd ..
70 - cd _build
71 - ps: >-
72 if ($env:Configuration -Match "plain") {
75 cmd /c "%NMAKE% test VERBOSE_FAILURE=yes TESTS=-test_fuzz 2>&1"
77 - ps: >-
78 if ($env:Configuration -Match "shared") {
82 - cd ..