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.
2 parents 6f4b62a + ae66a94 commit 5e9f8c0Copy full SHA for 5e9f8c0
utils/build-script
@@ -1319,6 +1319,12 @@ def main_normal():
1319
toolchain.libtool = args.host_libtool
1320
if args.cmake is not None:
1321
toolchain.cmake = args.cmake
1322
+ if args.sccache:
1323
+ print("Ensuring the sccache server is running...")
1324
+ # Use --show-stats to ensure the server is started, because using
1325
+ # --start-server will fail if the server is already running.
1326
+ # Capture the output because we don't want to see the stats.
1327
+ shell.capture([toolchain.sccache, "--show-stats"])
1328
1329
cmake = CMake(args=args, toolchain=toolchain)
1330
# Check the CMake version is sufficient on Linux and build from source
0 commit comments