diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-05-09 18:04:38 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-05-09 18:04:38 +0200 |
commit | 54fa68bf4468a07cb9a1cc672052bdd6df840512 (patch) | |
tree | e0809414464a28b7b9b334e2c0945e1d434adc85 | |
parent | 8329775abb5e2c0edbe7e792605450f0dc205f18 (diff) |
appveyor: update comments to be clear about toolchain
- CMake-based MSYS builds use mingw-w64 to cross-compile.
- autotools-based builds are compiled using msys2-devel.
The difference is that the later ones are not cross-compiled
to Windows and instead require the msys2 runtime to be present.
At the moment only the Azure Pipelines CI builds actually
run autotools-based cross-compilation builds for Windows.
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index b0a608b69..cd0c24fa9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -108,7 +108,7 @@ environment: SHARED: OFF DISABLED_TESTS: "!1139 !1501" COMPILER_PATH: "" - # generated CMake-based MSYS Makefiles builds + # generated CMake-based MSYS Makefiles builds (mingw cross-compiling) - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015" BUILD_SYSTEM: CMake PRJ_GEN: "MSYS Makefiles" @@ -216,7 +216,7 @@ environment: PRJ_CFG: "DLL Debug - DLL Windows SSPI - DLL WinIDN" TESTING: OFF VC_VERSION: VC15 - # autotools-based builds + # autotools-based builds (NOT mingw cross-compiling, but msys2 native) - APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015" BUILD_SYSTEM: autotools TESTING: ON |