Skip to content

Commit

Permalink
Enable ccache for buildall.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
liyafe1997 committed Aug 11, 2024
1 parent 67c102d commit aff2d79
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion buildall.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
#!/bin/bash

set -e

# Enable ccache
export CCACHE_DIR="$HOME/.cache/ccache_mikernel"
export CC="ccache gcc"
export CXX="ccache g++"
export PATH="/usr/lib/ccache:$PATH"

bash build.sh psyche
bash build.sh thyme
bash build.sh umi
Expand Down

0 comments on commit aff2d79

Please sign in to comment.