-
Notifications
You must be signed in to change notification settings - Fork 13.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
Improve android-ndk property interface #102994
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I'm trying to confirm whether the removal of this if condition (to default_compiler above) is intentional - it seems like it would change behavior for at least some targets? Can you comment on your rationale?
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.
Yes, it's needed to keep the tests passing on Android, because it turns out that
$CXX
needs to be set correctly for theissue-36710
test to pass. If I bring back something like the original logic like so:And run the tests like so (with #102757 patched in to make the
std
tests pass):I see a failure later:
This change makes the compiler detection for C++ consistent with C, which also first tries the logic in
default_compiler()
to find the compiler in all cases and then triescc::Build::get_base_compiler()
viatry_get_compiler()
if that fails. Previously for C++ thedefault_compiler()
(previouslyset_compiler()
) call would be omitted for targets that are cross-compiling the standard library, leading to the test failure on Android.I think the circumstances where this change would break a build are:
get_base_compiler()
returns a working C++ compiler butdefault_compiler()
returns a broken one.get_base_compiler()
returnsNone
for the C++ compiler for the target, causing theget_compiler()
call indefault_compiler()
to fail, aborting thebootstrap
program.Looking at the individual non-Android cases:
openbsd
: in some cases replacesgcc
withegcc
, as well as replacingg++
witheg++
. This seems right, there appears to be a compiler namedeg++
on some versions of OpenBSD. So I suspect this could actually fix (to some degree) cross-compiling to OpenBSD ifeg++
is available as a cross compiler. OpenBSD has a C++ compiler in the base system, so the call toget_compiler()
seems okay.mips*-unknown-linux-musl
replacesgcc
withmips*-linux-musl-gcc
, which will have no effect in the C++ case. Other musl targets replace the compiler withmusl-gcc
regardless of language. This isn't right for C++ and there doesn't seem to be such a thing asmusl-g++
in a normal musl installation (at least the musl sources don't mention it) and it seems plausible that a musl installation would support C but not C++, soget_base_compiler()
could fail. The right fix seems to be to guard all of themusl
clauses with a check thatcompiler == Language::C
. That means we will fall back totry_get_compiler()
for C++ musl targets, as we were doing before.I've made the proposed fix for
musl
targets in the latest update of the PR.