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
I found that the line ${BUILD_NEWLIB}="yes" errors with no=yes I believe the dollar sign and braces should be ommited as follows:
if [[ "$arg" == "--with-newlib" ]]; then BUILD_NEWLIB="yes" BUILD_GCC_STAGE_2="yes" export WITH_NEWLIB="--with-newlib" elif [[ "$arg" == "--with-cpu=" ]]; then CPU = ${i} elif [[ "$arg" == "--program-prefix=" ]]; then PREFIX = ${i} fi
After fixing some of the other issues mentioned by others, it seems to build normally now
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found that the line ${BUILD_NEWLIB}="yes" errors with no=yes
I believe the dollar sign and braces should be ommited as follows:
After fixing some of the other issues mentioned by others, it seems to build normally now
The text was updated successfully, but these errors were encountered: