You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typically one might expect to be able to supply make WASM_CC="ccache <path to clang>" to override the compiler & use ccache, but the use of double-quotes invoking the compiler ("$(WASM_CC)") inhibits this. The double-quotes should be removed or perhaps a new WASM_CC_WRAPPER introduced that can be used to inject ccache?
The text was updated successfully, but these errors were encountered:
vlovich
added a commit
to vlovich/wasi-libc
that referenced
this issue
Sep 1, 2021
If using a custom toolchain not on the path, explicitly invoking
ccache/sccache is required (also easier to debug that the right compiler
is being invoked). FixesWebAssembly#253.
If using a custom toolchain not on the path, explicitly invoking
ccache/sccache is required (also easier to debug that the right compiler
is being invoked). FixesWebAssembly#253.
If using a custom toolchain not on the path, explicitly invoking
ccache/sccache is required (also easier to debug that the right compiler
is being invoked). Fixes#253.
Typically one might expect to be able to supply
make WASM_CC="ccache <path to clang>"
to override the compiler & use ccache, but the use of double-quotes invoking the compiler ("$(WASM_CC)"
) inhibits this. The double-quotes should be removed or perhaps a newWASM_CC_WRAPPER
introduced that can be used to inject ccache?The text was updated successfully, but these errors were encountered: