-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Question: why does a make CXXFLAGS_FOR_TARGET_EXTRA=-v
build fail?
#1530
Comments
Pointer for further analysis (I have not reproduced the issue yet): the relevant Makefile is Things to analyse:
Also, does this happen with |
Thanks for the feedback @cmuellner.
Do you mean the two cases of with and without
Ditto?
Do you mean when using something like the following?
I can look into these issues soon. |
FWIW:
|
I tried with the latest upstream
|
To summarise:
Yes, apart from
It's not set in either case.
Yes - same error. |
I've cloned and configured the latest sources:
And then I have tried four different builds (doing
make distclean && rm -rf installed-tools
before each for a clean build):make 2>&1 | tee build.log
:build.log
make ASFLAGS_FOR_TARGET_EXTRA=-v 2>&1 | tee build-extra-asflags.log
:build-extra-asflags.log
make CFLAGS_FOR_TARGET_EXTRA=-v 2>&1 | tee build-extra-cflags.log
:build-extra-cflags.log
make CXXFLAGS_FOR_TARGET_EXTRA=-v 2>&1 | tee build-extra-cxxflags.log
:build-extra-cxxflags.log
The first three complete successfully (and give verbose output for the relevant tools) but the fourth and last one fails:
Anybody got any idea why?
This seems odd - the output file is
cxx11-ios_failure.s
but the it tries to copycxx11-ios_failure.o
:I.e. the output file is
cxx11-ios_failure.s
but it tries to copycxx11-ios_failure.o
.The text was updated successfully, but these errors were encountered: