path: | ${{ env.CACHE_DIR }} ${{ env.CCACHE_DIR }} ~/.ccache key: openwrt-${{ matrix.arch }}-${{ env.PACKAGE_NAME }}-${{ steps.cache_key.outputs.timestamp }} restore-keys: | openwrt-${{ matrix.arch }}-${{ env.PACKAGE_NAME }}- 2 changes: 1 addition & 1 deletion ...
ccache: FATAL: Could not find compiler "gcc" in PATH#3642 renning22opened this issueAug 30, 2017· 18 comments Assignees Labels P3type: feature request Comments I can't build any linux targets somehow after I upgraded to Bazel 0.5.4. ...
ccache: FATAL: Could not find compiler "arm-eabi-gcc" in PATH --- solution: [root@localhost cm-13-kiwi]# echo $ANDROID_TOOLCHAIN /opt/android-x86/cm-13-kiwi/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/bin [root@localhost cm-13-kiwi]# ls x86_64-linux-android-gcc --- [...
ccache: FATAL: Could not find compiler "C:\Nordic\v1.8.0\toolchain\opt\bin\arm-none-eabi-gcc.exe" in PATH I'm faced with a special error: we are not able to install the nRF Connect V1.8.0 using the tools published by Nordic. We use t...
Description of changes If we only override stdenv with ccacheStdenv, we will miss libgcc. However, both stdenv and ccacheStdenv can find libgcc in cc.cc.lib. related issue: #303625 Things done B...
10 src/ccache.cpp @@ -398,16 +398,16 @@ do_remember_include_file(Context& ctx, return true; } if (ctx.included_files.find(path) != ctx.included_files.end()) { // Already known include file. return true; } // Canonicalize path for comparison; Clang uses ./header.h. if (Util...