Skip to content

Commit cc87967

Browse files
committed
depends: Remove ccache
1 parent ed6ae80 commit cc87967

File tree

5 files changed

+2
-29
lines changed

5 files changed

+2
-29
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ dist: trusty
33
os: linux
44
language: minimal
55
cache:
6+
ccache: true
67
directories:
78
- depends/built
89
- depends/sdk-sources
@@ -68,7 +69,7 @@ script:
6869
- if [ -n "$USE_SHELL" ]; then export CONFIG_SHELL="$USE_SHELL"; fi
6970
- OUTDIR=$BASE_OUTDIR/$TRAVIS_PULL_REQUEST/$TRAVIS_JOB_NUMBER-$HOST
7071
- BITCOIN_CONFIG_ALL="--disable-dependency-tracking --prefix=$TRAVIS_BUILD_DIR/depends/$HOST --bindir=$OUTDIR/bin --libdir=$OUTDIR/lib"
71-
- if [ -z "$NO_DEPENDS" ]; then depends/$HOST/native/bin/ccache --max-size=$CCACHE_SIZE; fi
72+
- if [ -z "$NO_DEPENDS" ]; then ccache --max-size=$CCACHE_SIZE; fi
7273
- test -n "$USE_SHELL" && eval '"$USE_SHELL" -c "./autogen.sh"' || ./autogen.sh
7374
- mkdir build && cd build
7475
- ../configure --cache-file=config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)

depends/config.site.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ LDFLAGS="-L$depends_prefix/lib $LDFLAGS"
6464
CC="@CC@"
6565
CXX="@CXX@"
6666
OBJC="${CC}"
67-
CCACHE=$depends_prefix/native/bin/ccache
6867
PYTHONPATH=$depends_prefix/native/lib/python/dist-packages:$PYTHONPATH
6968

7069
if test -n "@AR@"; then

depends/packages/native_ccache.mk

Lines changed: 0 additions & 25 deletions
This file was deleted.

depends/packages/packages.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
packages:=boost openssl libevent zeromq
2-
native_packages := native_ccache
32

43
qt_native_packages = native_protobuf
54
qt_packages = qrencode protobuf zlib

doc/dependencies.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ These are the dependencies currently used by Bitcoin Core. You can find instruct
77
| --- | --- | --- | --- | --- | --- |
88
| Berkeley DB | [4.8.30](http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html) | 4.8.x | No | | |
99
| Boost | [1.64.0](http://www.boost.org/users/download/) | [1.47.0](https://github.com/bitcoin/bitcoin/pull/8920) | No | | |
10-
| ccache | [3.3.6](https://ccache.samba.org/download.html) | | No | | |
1110
| Clang | | [3.3+](http://llvm.org/releases/download.html) (C++11 support) | | | |
1211
| D-Bus | [1.10.18](https://cgit.freedesktop.org/dbus/dbus/tree/NEWS?h=dbus-1.10) | | No | Yes | |
1312
| Expat | [2.2.5](https://libexpat.github.io/) | | No | Yes | |

0 commit comments

Comments
 (0)