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
after install gcc by apt install in ubuntu 20.04
/usr/bin/gcc is a symlink file, the realpath of gcc is /usr/bin/x86_64-linux-gnu-gcc-9
the daemon can not find any compiler, because the bellow code skip symlink
if (S_ISLNK(buf.st_mode)) { // Symbolic link, ignore it.
continue;
}
after install gcc by apt install in ubuntu 20.04
/usr/bin/gcc is a symlink file, the realpath of gcc is /usr/bin/x86_64-linux-gnu-gcc-9
the daemon can not find any compiler, because the bellow code skip symlink
yadcc/yadcc/daemon/cloud/compiler_registry.cc
Line 72 in 3f776f9
The text was updated successfully, but these errors were encountered: