From 656c6a3e86a04952732e79c9c8c8e2ad043a7d9b Mon Sep 17 00:00:00 2001 From: Dominic Cerquetti Date: Sat, 27 Aug 2022 14:28:20 -0400 Subject: [PATCH] upgrade ccache installed version to 4.6.2 - primary reason: 4.6.2 fixes errors if the user's home directory contains a space - alternative fix: the CCACHE_DIR env var can be set to something without a space in it, or set to TMP which properly escapes the home dir name - there may be other issues with spaces in filenames on builds in other parts of ESP-IDF, see https://github.com/espressif/esp-idf/issues/8364 for more info tested locally on windows only, use at your own risk Closes https://github.com/espressif/esp-idf/pull/9656 --- tools/tools.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/tools.json b/tools/tools.json index f2c6852003..3f38e976c6 100644 --- a/tools/tools.json +++ b/tools/tools.json @@ -946,7 +946,7 @@ "description": "Ccache (compiler cache)", "export_paths": [ [ - "ccache-4.3-windows-64" + "ccache-4.6.2-windows-x86_64" ] ], "export_vars": { @@ -974,12 +974,12 @@ "version_regex": "ccache version ([0-9.]+)", "versions": [ { - "name": "4.3", + "name": "4.6.2", "status": "recommended", "win64": { - "sha256": "a9cacae73c3906d8193456328bee74f7748cb1559a32eaced9ee78eadd416105", - "size": 1550675, - "url": "https://github.com/ccache/ccache/releases/download/v4.3/ccache-4.3-windows-64.zip" + "sha256": "bf230b0936962eae43a3410d6477a7d0b9308e29f89a3091881d22e2502604c5", + "size": 1957177, + "url": "https://github.com/ccache/ccache/releases/download/v4.6.2/ccache-4.6.2-windows-x86_64.zip" } } ]