提交 a70ca740 编写于 作者: R Richard Levitte

Travis - don't use ccache with cross compiles

Although theoretically possible, Configure doesn't treat CC variable
set like this very well: CC="ccache i686-w64-mingw32-gcc"
Also, this Travis script doesn't recognise the possibility either.
Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 a1673e15
......@@ -67,9 +67,6 @@ before_script:
srcdir=../_srcdist;
mkdir _build;
cd _build;
if which ccache >/dev/null; then
CC="ccache $CC";
fi
fi
- if [ "$CC" == i686-w64-mingw32-gcc ]; then
export CROSS_COMPILE=${CC%%gcc}; unset CC;
......@@ -78,6 +75,9 @@ before_script:
export CROSS_COMPILE=${CC%%gcc}; unset CC;
$srcdir/Configure mingw64 $CONFIG_OPTS -Wno-pedantic-ms-format;
else
if which ccache >/dev/null; then
CC="ccache $CC";
fi
$srcdir/config $CONFIG_OPTS;
fi
- cd ..
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册