Skip to content

Commit

Permalink
add emscripten to the compiler list (#187)
Browse files Browse the repository at this point in the history
add emscripten to the compiler list (#187)
  • Loading branch information
mmomtchev authored Mar 1, 2024
1 parent faf867a commit b5b9233
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59630,6 +59630,8 @@ async function configure(ccacheVariant, platform) {
await execBash(`ln -s ${ccache} /usr/local/bin/c++`);
await execBash(`ln -s ${ccache} /usr/local/bin/clang`);
await execBash(`ln -s ${ccache} /usr/local/bin/clang++`);
await execBash(`ln -s ${ccache} /usr/local/bin/emcc`);
await execBash(`ln -s ${ccache} /usr/local/bin/em++`);
}
core.info("Cccache config:");
await execBash("ccache -p");
Expand Down
2 changes: 2 additions & 0 deletions src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ async function configure(ccacheVariant : string, platform : string) : Promise<vo
await execBash(`ln -s ${ccache} /usr/local/bin/c++`);
await execBash(`ln -s ${ccache} /usr/local/bin/clang`);
await execBash(`ln -s ${ccache} /usr/local/bin/clang++`);
await execBash(`ln -s ${ccache} /usr/local/bin/emcc`);
await execBash(`ln -s ${ccache} /usr/local/bin/em++`);
}
core.info("Cccache config:");
await execBash("ccache -p");
Expand Down

0 comments on commit b5b9233

Please sign in to comment.