Intel compiler fails to find gcc #9
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It seems we don't have gcc in $PATH:
Which should run:
3257c711ce/pkgs/build-support/cc-wrapper/cc-wrapper.sh (L235-L239)And it does:
Something is causing our $PATH to change between the cc-wrapper-hook and the execve syscall:
So... we depended on a bug as they seem to not export PATH, so it was being drived by our wrapper:
da136a6f42This also broke our ability to change PATH:
b5e504cc40As a workaround we can override path_backup.
Patching path_backup fixes it for C, but C++ fails:
It looks the gcc version has extra components in some cases:
Continues to fail. I will leave it at gcc 13 for now.