Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ commands:
- run:
name: "Ccache stats and configuration"
command: |
ls ~/cache/sysroot/lib/wasm32-emscripten || echo "no build"
cat ~/cache/sysroot/lib/wasm32-emscripten/crtbegin.o.ccache-log
date
ccache -s
ccache --print-stats
Expand Down Expand Up @@ -572,6 +574,8 @@ jobs:
EMCC_CORES: 16
EMCC_USE_NINJA: 1
EM_COMPILER_WRAPPER: "ccache"
CCACHE_DEBUG: 1
CCACHE_DEBUGLEVEL: 1
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this generate extra stdout stuff during the build?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it puts the output in a log file alongside the generated file. The stats printing step above dumps one during that stage. The log files are small, compared to the object files.

steps:
- checkout
- run:
Expand Down