-
Notifications
You must be signed in to change notification settings - Fork 452
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
rust plugin: fix linker on i386 #2580
Conversation
On i386 environment, linker becomes i386-linux-gnu-gcc according to arch_triplet. It causes the following error on build.snapcraft.io: error: linker `i386-linux-gnu-gcc` not found | = note: No such file or directory (os error 2) To fix it, I added _get_linker method to adjust linker name.
Hi there, thank you for your contribution.
The checklist mentions you have signed the CLA though, if so, was it with another account? |
The account is correct. At the time of CI, CLA may be under checking. |
that did the trick @dalance |
Failed tests are not relevant and being dealt with elsewhere:
|
On i386 environment, linker becomes i386-linux-gnu-gcc according to arch_triplet. It causes the following error on build.snapcraft.io: error: linker `i386-linux-gnu-gcc` not found | = note: No such file or directory (os error 2) To fix it, I added _get_linker method to adjust linker name.
On i386 environment, linker becomes i386-linux-gnu-gcc according to arch_triplet. It causes the following error on build.snapcraft.io: error: linker `i386-linux-gnu-gcc` not found | = note: No such file or directory (os error 2) To fix it, I added _get_linker method to adjust linker name.
On i386 environment, linker becomes i386-linux-gnu-gcc according to arch_triplet. It causes the following error on build.snapcraft.io: error: linker `i386-linux-gnu-gcc` not found | = note: No such file or directory (os error 2) To fix it, I added _get_linker method to adjust linker name.
On i386 environment, linker becomes
i386-linux-gnu-gcc
according toarch_triplet. It causes the following error on build.snapcraft.io:
To fix it, I added
_get_linker
method to adjust linker name../runtests.sh static
?./runtests.sh tests/unit
?