Add missing compilers to use sccache with
This commit is contained in:
parent
ad1f4f7ad5
commit
1b1c86034a
1 changed files with 8 additions and 0 deletions
|
@ -726,6 +726,12 @@ export PATH=${PATH/:\/usr\/local\/bin/}
|
|||
or not create_executable_script(
|
||||
f"{chroot}/root/usr/local/bin/g++", sccache_script
|
||||
)
|
||||
or not create_executable_script(
|
||||
f"{chroot}/root/usr/local/bin/cc", sccache_script
|
||||
)
|
||||
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/clang", sccache_script
|
||||
)
|
||||
|
@ -752,6 +758,8 @@ def cleanup_sccache(chroot):
|
|||
"-f",
|
||||
f"{chroot}/root/usr/local/bin/gcc",
|
||||
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/clang",
|
||||
f"{chroot}/root/usr/local/bin/clang++",
|
||||
f"{chroot}/root/usr/local/bin/rustc",
|
||||
|
|
Loading…
Reference in a new issue