summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-10-07 09:35:12 +0200
committerAndy Polyakov <appro@openssl.org>2015-10-12 12:07:29 +0200
commitdc8980957ba12f49f7656429eda3a7b62c4cbb4c (patch)
treeb6879eda1623e7976ea6b390e20f66b66c84f148 /.travis.yml
parentaf170194a88d6127d447bea826845c23ca192727 (diff)
Configurations: move -Wno-pedantic-ms-format to .travis.yml.
The option is not available in older toolchains and would cause breakage. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 34b4d9db21..c923119922 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,10 +35,10 @@ matrix:
before_script:
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
- ./Configure mingw $CONFIG_OPTS;
+ ./Configure mingw $CONFIG_OPTS -Wno-pedantic-ms-format;
elif [ "$CC" == x86_64-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
- ./Configure mingw64 $CONFIG_OPTS;
+ ./Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format;
else
./config $CONFIG_OPTS;
fi