mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
12 lines
177 B
Bash
Executable File
12 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export CCACHE_COMPRESS=1
|
|
export CCACHE_COMPRESSLEVEL=5
|
|
export CCACHE_COMPILERCHECK=content
|
|
export PATH=/usr/lib/ccache/:$PATH
|
|
ccache --show-stats
|
|
|
|
set +ex
|