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.
1 parent 88ce7ab commit 127e29fCopy full SHA for 127e29f
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