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
The code we landed in #321 doesn't seem to be working exactly right. I ran a simple test distributed compile on my Linux machine and got:
luser@eye7:/build$ /build/sccache/target/debug/sccache gcc -c hello.c -o hello.o
gcc: error trying to exec 'as': execvp: No such file or directory
Compiler killed by signal 1
Looking at the contents of the toolchain tar on disk shows that as is missing:
The code we landed in #321 doesn't seem to be working exactly right. I ran a simple test distributed compile on my Linux machine and got:
Looking at the contents of the toolchain tar on disk shows that
as
is missing:If I look at an older toolchain tar I have that was created by
icecc-create-env
it does includeas
:The sccache server's log output contains:
Looking at the code involved it runs
gcc -print-prog-name=as
, which on my system just printsas
:The packaging code doesn't handle non-absolute paths here, which seems to be the problem.
The text was updated successfully, but these errors were encountered: