-
Notifications
You must be signed in to change notification settings - Fork 423
Change mips64-unknown-linux-gnuabi64
to hard-float.
#974
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
Conversation
The linking to libgcc is due to an undefined reference to Unfortunately, it doesn't seem possible to statically link musl and have libgcc, dynamically linking to |
#!/bin/bash | ||
|
||
# this fixes an issue of missing symbols from the command lines | ||
# these soft-float routines are required even for hard-float targets. | ||
# (strtod.lo): undefined reference to symbol '__trunctfsf2@@GCC_3.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we ln this exec to make sure it's executed? Is that maybe not really needed (since cwd shouldn't change)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The cwd
won't change from where the script is invoked, so I don't think this is an issue. We could always remove the exec, my goal was just to replace the current process.
bors try --target mips64-unknown-linux-gnuabi64 |
tryBuild succeeded: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bors r+
Build failed: |
Windows issue, for some reason the permissions got reset even on Git bash. |
Changes `mips64-unknown-linux-gnuabi64` to use a hard-float musl toolchain, rather than a soft-float one.
bors r=Emilgardis |
Currently waiting on #978. |
Canceled. |
bors retry |
bors r=Emilgardis |
Build succeeded: |
Changes
mips64-unknown-linux-gnuabi64
to use a hard-float musl toolchain, rather than a soft-float one.Closes #906.