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
The default C compiler rule for make uses the $TARGET_ARCH variable. Here's the definition:
make
$TARGET_ARCH
"COMPILE.c", "$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH)",
http://git.savannah.gnu.org/cgit/make.git/tree/src/default.c#n480
This results in a bad gcc invocation for Makefile's using the default rule.
gcc
Makefile
I'm pretty sure that the only fix to this is to rename TARGET_ARCH in Nerves to something else.
TARGET_ARCH
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The default C compiler rule for
make
uses the$TARGET_ARCH
variable. Here's the definition:http://git.savannah.gnu.org/cgit/make.git/tree/src/default.c#n480
This results in a bad
gcc
invocation forMakefile
's using the default rule.I'm pretty sure that the only fix to this is to rename
TARGET_ARCH
in Nerves to something else.The text was updated successfully, but these errors were encountered: