mirror of
https://github.com/Nuitka/Nuitka.git
synced 2025-12-14 20:35:49 +01:00
* Need to consider if using mingw, clang, or zig more carefully. * With this standalone and onefile mode are working. * Also added control over zig cache file locations to be below Nuitka's cache directory.
56 lines
2.0 KiB
Python
56 lines
2.0 KiB
Python
# Copyright 2025, Kay Hayen, mailto:kay.hayen@gmail.com find license text at end of file
|
|
|
|
|
|
""" Cleanup of caches for Nuitka.
|
|
|
|
This is triggered by "--clean-cache=" usage, and can cleanup all kinds of
|
|
caches and is supposed to run before or instead of Nuitka compilation.
|
|
"""
|
|
|
|
import os
|
|
|
|
from nuitka.BytecodeCaching import getBytecodeCacheDir
|
|
from nuitka.Tracing import cache_logger
|
|
from nuitka.utils.AppDirs import getCacheDir
|
|
from nuitka.utils.FileOperations import removeDirectory
|
|
|
|
|
|
def _cleanCacheDirectory(cache_name, cache_dir):
|
|
from nuitka.Options import shallCleanCache
|
|
|
|
if shallCleanCache(cache_name) and os.path.exists(cache_dir):
|
|
cache_logger.info(
|
|
"Cleaning cache '%s' directory '%s'." % (cache_name, cache_dir)
|
|
)
|
|
removeDirectory(
|
|
cache_dir,
|
|
logger=cache_logger,
|
|
ignore_errors=False,
|
|
extra_recommendation=None,
|
|
)
|
|
cache_logger.info("Done.")
|
|
|
|
|
|
def cleanCaches():
|
|
_cleanCacheDirectory("ccache", getCacheDir("ccache"))
|
|
_cleanCacheDirectory("clcache", getCacheDir("clcache"))
|
|
_cleanCacheDirectory("zig", getCacheDir("zig"))
|
|
_cleanCacheDirectory("bytecode", getBytecodeCacheDir())
|
|
_cleanCacheDirectory("dll-dependencies", getCacheDir("library_dependencies"))
|
|
|
|
|
|
# Part of "Nuitka", an optimizing Python compiler that is compatible and
|
|
# integrates with CPython, but also works on its own.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|