[PATCH] D142986: Enable multilib.yaml in the BareMetal ToolChain

Petr Hosek via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Mar 13 21:43:24 PDT 2023


phosek added inline comments.


================
Comment at: clang/lib/Driver/ToolChains/BareMetal.cpp:184
+  SmallString<128> MultilibPath(SysRootDir);
+  llvm::sys::path::append(MultilibPath, MULTILIB_YAML_FILENAME);
+
----------------
Rather than hardcoding the filename and the location, which is inflexible, could we instead provide a command line option to specify the file to use?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D142986/new/

https://reviews.llvm.org/D142986



More information about the cfe-commits mailing list