From: Stephen Seo Date: Wed, 7 Sep 2022 06:06:05 +0000 (+0900) Subject: Add missing compiler program for sccache support X-Git-Url: https://git.seodisparate.com/stephenseo/js/bootstrap.bundle.min.js?a=commitdiff_plain;h=22203fee1f583fde052009142a1fcd463158a78b;p=AnotherAURHelper Add missing compiler program for sccache support --- diff --git a/update.py b/update.py index b5c8ad5..73c7b81 100755 --- a/update.py +++ b/update.py @@ -732,6 +732,9 @@ export PATH=${PATH/:\/usr\/local\/bin/} or not create_executable_script( f"{chroot}/root/usr/local/bin/c++", sccache_script ) + or not create_executable_script( + f"{chroot}/root/usr/local/bin/cpp", sccache_script + ) or not create_executable_script( f"{chroot}/root/usr/local/bin/clang", sccache_script ) @@ -760,6 +763,7 @@ def cleanup_sccache(chroot): f"{chroot}/root/usr/local/bin/g++", f"{chroot}/root/usr/local/bin/cc", f"{chroot}/root/usr/local/bin/c++", + f"{chroot}/root/usr/local/bin/cpp", f"{chroot}/root/usr/local/bin/clang", f"{chroot}/root/usr/local/bin/clang++", f"{chroot}/root/usr/local/bin/rustc",