[PATCH] D37278: Restore clang_rt library name on i686-android.
Hans Wennborg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 29 14:52:49 PDT 2017
hans accepted this revision.
hans added a comment.
This revision is now accepted and ready to land.
Thanks! Looks good to me.
================
Comment at: clang/lib/Driver/ToolChain.cpp:308
+ if (TC.getArch() == llvm::Triple::x86 && Triple.isAndroid())
+ return "i686";
----------------
Maybe add a comment here explaining that this is for historical reasons. Or in the cmake file below (or both).
https://reviews.llvm.org/D37278
More information about the cfe-commits
mailing list