[PATCH] D13340: Add support for the new mips-mti-linux toolchain.

Simon Atanasyan via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 2 02:13:29 PDT 2015


atanasyan added inline comments.

================
Comment at: lib/Driver/Driver.cpp:2225
@@ -2219,1 +2224,3 @@
         TC = new toolchains::HexagonToolChain(*this, Target, Args);
+      else if ((Target.getVendor() == llvm::Triple::MipsTechnologies) &&
+               !Target.hasEnvironment())
----------------
Now I try to redesign Codescape toolchain support in the Clang driver. I consider to use a separate toolchain class like your `MipsToolChain` and I name it `CodeScapeMtiToolChain`. If I be able to join support for both MIT and IMG toolchains in the single class, I will rename it to `CodeScapeToolChain`.

Will this non-GNU toolchain have a personal name like CodeScape? If not I am okay with `MipsNonGNUToolChain`.


http://reviews.llvm.org/D13340





More information about the cfe-commits mailing list