From 32bf5067de3f4c80632db5aa5aba6961f9760879 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sun, 20 Sep 2015 10:09:54 +0200 Subject: [PATCH] [appveyor] disable LTO as symengine's mingw does not provide it --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fb5413a01b..48635f264a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,7 +18,7 @@ environment: BOOST_LIBRARYDIR: c:\Libraries\boost_1_59_0\stage\lib # BOOST_ROOT: c:\Libraries\boost # BOOST_LIBRARYDIR: c:\Libraries\boost\stage\lib - + matrix: - COMPILER: MSVC15 PLATFORM: Win32 @@ -41,7 +41,7 @@ install: build_script: - if [%COMPILER%]==[MSVC15] if [%PLATFORM%]==[Win32] cmake -G "Visual Studio 14 2015" -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF . - if [%COMPILER%]==[MSVC15] if [%PLATFORM%]==[x64] cmake -G "Visual Studio 14 2015 Win64" -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF . -- if not [%COMPILER%]==[MSVC15] cmake -G "MinGW Makefiles" -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF . +- if not [%COMPILER%]==[MSVC15] cmake -G "MinGW Makefiles" -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF . - if [%COMPILER%]==[MSVC15] msbuild ALL_BUILD.vcxproj /verbosity:normal - if not [%COMPILER%]==[MSVC15] mingw32-make && mingw32-make install -- 2.20.1