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
Reading this PR #176 I understand that there is no way to change the hardcoded values for the CLang compiler. I wanted to build a 64 bit version using MinGW with included CLang, using the some other linker which is the only one I had installed for 64 bit builds (Worked fine with 32bit builds, as it was installed), so I added:
Archiver {
Flags "-fuse-ld=ld"
}
, but it fails with clang: error: invalid linker name in argument '-fuse-ld=llvm-lib'
from the command: clang -fuse-ld=ld -fuse-ld=llvm-lib -o build/....
Suggestion:
Add a flag or some settings to be able to change these, but keep them default the same.
Right now I will solve it by changing LLVM install I guess, but it would be nice to be able to change it to what you would like to have, instead of having it hardcoded.
The text was updated successfully, but these errors were encountered:
Reading this PR #176 I understand that there is no way to change the hardcoded values for the CLang compiler. I wanted to build a 64 bit version using MinGW with included CLang, using the some other linker which is the only one I had installed for 64 bit builds (Worked fine with 32bit builds, as it was installed), so I added:
Archiver {
Flags "-fuse-ld=ld"
}
, but it fails with
clang: error: invalid linker name in argument '-fuse-ld=llvm-lib'
from the command:
clang -fuse-ld=ld -fuse-ld=llvm-lib -o build/....
Suggestion:
Add a flag or some settings to be able to change these, but keep them default the same.
Right now I will solve it by changing LLVM install I guess, but it would be nice to be able to change it to what you would like to have, instead of having it hardcoded.
The text was updated successfully, but these errors were encountered: