From 7ff5e0c5d171960af25d0b89a35d022b05a86dfb Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Mon, 23 Dec 2019 13:22:01 +0000 Subject: [PATCH] Fix C++ linking on AppVeyor For some reason Rustup now installs the i686 toolchain by default, so build the C++ tests as a 32-bit application. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 660cfca..f0bfdda 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -50,6 +50,6 @@ test_script: - cargo build --manifest-path ffi/Cargo.toml --features ffi-headers - ps: mkdir ffi/build - cd ffi/build - - cmake .. -G "Visual Studio 15 2017 Win64" + - cmake .. -G "Visual Studio 15 2017" - cmake --build . - ctest