We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 014dbce commit 44da292Copy full SHA for 44da292
.travis.yml
@@ -26,10 +26,9 @@ env:
26
27
cache:
28
pip: true
29
+ ccache: true
30
directories:
31
- ${HOME}/.cache/deps
- - ${HOME}/.ccache
32
-
33
34
before_install:
35
- source tools/test/travis-ci/functions.sh
tools/cmake/app.cmake
@@ -1,6 +1,12 @@
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
# SPDX-License-Identifier: Apache-2.0
3
4
+find_program(CCACHE "ccache")
5
+if(CCACHE)
6
+ set(CMAKE_C_COMPILER_LAUNCHER ${CCACHE})
7
+ set(CMAKE_CXX_COMPILER_LAUNCHER ${CCACHE})
8
+endif()
9
+
10
include(${MBED_CONFIG_PATH}/mbed_config.cmake)
11
12
# Set default toolchain file
0 commit comments