We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Makefile.cross-compiles even though both mips and mipsle have softfloat flag, it is only applied for "mips" due to a bug in "if statement.
Line
elif [ "$${os}" = "linux" ] && [ "$${arch}" = "mips" ] && [ "$${extra}" != "" ] ; then \
should look like this:
elif [ "$${os}" = "linux" ] && ([ "$${arch}" = "mips" ] || [ "$${arch}" = "mipsle" ]) && [ "$${extra}" != "" ] ; then \
0.57.0
linux/mipsel
Not applicable
No response
The text was updated successfully, but these errors were encountered:
With the line corrected, binaries do run on the device.
Sorry, something went wrong.
Can you submit a PR to fix it?
Created a PR: #4176
Successfully merging a pull request may close this issue.
Bug Description
In Makefile.cross-compiles even though both mips and mipsle have softfloat flag, it is only applied for "mips" due to a bug in "if statement.
Line
should look like this:
frpc Version
0.57.0
frps Version
0.57.0
System Architecture
linux/mipsel
Configurations
Not applicable
Logs
No response
Steps to reproduce
Affected area
The text was updated successfully, but these errors were encountered: