diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-11 19:00:47 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-26 08:55:58 +0200 |
commit | 3c762fbe1f16773acf874ec906511b8376b70719 (patch) | |
tree | 67bef62df672256c45f059408e11a5bbbce4b5d4 /.ci/ci-configure.sh | |
parent | 2053ccb7173f195d43f99e36318b5a9d224fa1e0 (diff) | |
download | efl-3c762fbe1f16773acf874ec906511b8376b70719.tar.gz |
ci: add autoconf caching
this enables caching of the autoreconf and ./configure stages of the build
using autotools-provided caching mechanisms in order to speed up these steps
fix T7136
Differential Revision: https://phab.enlightenment.org/D6608
Diffstat (limited to '.ci/ci-configure.sh')
-rwxr-xr-x | .ci/ci-configure.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/ci-configure.sh b/.ci/ci-configure.sh index 86e280ec5f..4af6763576 100755 --- a/.ci/ci-configure.sh +++ b/.ci/ci-configure.sh @@ -7,7 +7,7 @@ CI_BUILD_TYPE="$1" export MAKEFLAGS="-j5" export EIO_MONITOR_POLL=1 -DEFAULT_LINUX_COPTS="--prefix=/usr/ --with-tests=regular --disable-cxx-bindings" +DEFAULT_LINUX_COPTS="--prefix=/usr/ --with-tests=regular --disable-cxx-bindings -C" WAYLAND_LINUX_COPTS=" --enable-wayland --enable-elput --enable-drm \ --enable-wayland-ivi-shell --enable-gl-drm --with-opengl=es --enable-egl" @@ -54,7 +54,7 @@ if [ "$DISTRO" != "" ] ; then --env CXX="ccache g++" --env CFLAGS="-fdirectives-only" --env CXXFLAGS="-fdirectives-only" \ $(cat $HOME/cid) ./autogen.sh $OPTS else - OSX_COPTS="--disable-cxx-bindings" + OSX_COPTS="--disable-cxx-bindings -C" # Prepare OSX env for build mkdir -p ~/Library/LaunchAgents |