We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9889586 + 127e29f commit aeabf7dCopy full SHA for aeabf7d
lib/ClangImporter/ClangImporter.cpp
@@ -881,6 +881,9 @@ getClangInvocationFileMapping(ASTContext &ctx) {
881
// We currently only need this when building for Linux.
882
if (!triple.isOSLinux())
883
return {};
884
+ // Android uses libc++.
885
+ if (triple.isAndroid())
886
+ return {};
887
888
auto clangDiags = clang::CompilerInstance::createDiagnostics(
889
new clang::DiagnosticOptions());
0 commit comments