[flang-commits] [clang] [flang] [clang][driver] Special care for linker flags in config files (PR #117573)

Fangrui Song via flang-commits flang-commits at lists.llvm.org
Wed Dec 4 21:58:12 PST 2024


================
@@ -297,6 +297,9 @@ class Driver {
   /// Object that stores strings read from configuration file.
   llvm::StringSaver Saver;
 
+  /// Linker inputs originated from configuration file.
+  std::unique_ptr<llvm::opt::InputArgList> CfgLinkerInputs;
----------------
MaskRay wrote:

`CfgLinkerInputs` is not a good name as the implementation is generic, not coupled with linker options.

https://github.com/llvm/llvm-project/pull/117573


More information about the flang-commits mailing list