From 22203fee1f583fde052009142a1fcd463158a78b Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Wed, 7 Sep 2022 15:06:05 +0900 Subject: [PATCH] Add missing compiler program for sccache support --- update.py | 4 ++++ 1 file changed, 4 insertions(+) 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", -- 2.49.0