-
Notifications
You must be signed in to change notification settings - Fork 13.4k
*-ld.lld linker not recognized as "lld" #117834
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
@llvm/issue-subscribers-backend-hexagon Author: Brian Cain (androm3da)
clang provides `hexagon-link` specific link arguments such as `-mcpu=hexagonv65` and `-march=hexagon` when `hexagon-unknown-linux-musl-ld.lld` is found. lld rejects this with the following error:
clang should instead handle this as it does for the case when |
@llvm/issue-subscribers-clang-driver Author: Brian Cain (androm3da)
clang provides `hexagon-link` specific link arguments such as `-mcpu=hexagonv65` and `-march=hexagon` when `hexagon-unknown-linux-musl-ld.lld` is found. lld rejects this with the following error:
clang should instead handle this as it does for the case when |
Note that adding this symlink uncovered a clang bug, llvm/llvm-project#117834 so this change should not be applied to this repo until after that fix is selected. Signed-off-by: Brian Cain <[email protected]>
This should be fixed by #117338 |
/cherry-pick 2dc0de7 |
/pull-request #118181 |
Note that adding this symlink uncovered a clang bug, llvm/llvm-project#117834 This change is deliberately applied after that fix landed in llvmorg-19.1.5. Signed-off-by: Brian Cain <[email protected]>
Note that adding this symlink uncovered a clang bug, llvm/llvm-project#117834 This change is deliberately applied after that fix landed in llvmorg-19.1.5. Signed-off-by: Brian Cain <[email protected]>
clang provides
hexagon-link
specific link arguments such as-mcpu=hexagonv65
and-march=hexagon
whenhexagon-unknown-linux-musl-ld.lld
is found. lld rejects this with the following error:clang should instead handle this as it does for the case when
ld.lld
is found in thePATH
whenhexagon-unknown-linux-musl-clang -fuse-ld=lld ...
is invoked.The text was updated successfully, but these errors were encountered: