From 902114cb2b6f7702781ef1494fae685f5bbffe5d Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 23 Apr 2016 10:22:52 +0200 Subject: [PATCH] appveyor: try to ignore deprecation warnings coming from boost internals --- appveyor.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index a8ba39978d..bf87208509 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -31,6 +31,8 @@ install: - rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe" build_script: +- SET CFLAGS=-Wno-deprecated-declarations # ignore C:/Libraries/boost_1_59_0/boost/smart_ptr/shared_ptr.hpp:461:22: warning: 'template class std::auto_ptr' is deprecated [-Wdeprecated-declarations] +- SET CPPFLAGS=-Wno-deprecated-declarations # ignore issues within boost - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF . - C:\tools\mingw64\bin\mingw32-make.exe VERBOSE=1 - cd C:/projects/simgrid/examples/java && java -classpath ".;../../simgrid.jar" masterslave.Masterslave ../platforms/platform.xml masterslave/masterslaveDeployment.xml || true -- 2.20.1