From 05851caa2d728bb9e8c0a55b3522731a3e80fb91 Mon Sep 17 00:00:00 2001 From: l00889714 Date: Tue, 22 Apr 2025 10:39:57 +0800 Subject: [PATCH] =?UTF-8?q?ccache=5Fname=E6=94=AF=E6=8C=81=E7=9B=B8?= =?UTF-8?q?=E5=AF=B9=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tools/ccjson.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tools/ccjson.py b/tools/ccjson.py index 49b146b..3cec8ba 100644 --- a/tools/ccjson.py +++ b/tools/ccjson.py @@ -32,9 +32,16 @@ import json import sys - +import os def main(json_name, ccache_name, select_file, exclude_file=''): + + current_dir = os.getcwd() + print(f"Current working directory: {current_dir}") + + json_name = os.path.abspath(json_name) + ccache_name = os.path.abspath(ccache_name) + print(f'json_name = {json_name}') print(f'ccache_name = {ccache_name}') print(f'select_file = {select_file}') -- Gitee