mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2026-04-18 18:18:44 +00:00
feat: add --use-ccache CLI argument to build_llvm.py
Add a new --use-ccache flag that will allow developers to opt-in to using ccache for LLVM builds. This is part of a larger effort to disable ccache by default to reduce CI storage consumption while still allowing local developers to benefit from faster incremental builds. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
fcec30e933
commit
bf9612c1e6
|
|
@ -270,6 +270,11 @@ def main():
|
|||
action="store_true",
|
||||
help="use clang instead of gcc",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--use-ccache",
|
||||
action="store_true",
|
||||
help="enable ccache for faster incremental LLVM builds (disabled by default to reduce CI storage consumption, recommended for local development)",
|
||||
)
|
||||
parser.add_argument(
|
||||
"--extra-cmake-flags",
|
||||
type=str,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user