diff options
Diffstat (limited to 'lld/ELF/Config.h')
-rw-r--r-- | lld/ELF/Config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lld/ELF/Config.h b/lld/ELF/Config.h index 3d2d63d967c..fabccee14db 100644 --- a/lld/ELF/Config.h +++ b/lld/ELF/Config.h @@ -10,6 +10,7 @@ #ifndef LLD_ELF_CONFIG_H #define LLD_ELF_CONFIG_H +#include "llvm/ADT/MapVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/ELF.h" @@ -41,6 +42,7 @@ struct Configuration { llvm::StringRef SoName; llvm::StringRef Sysroot; std::string RPath; + llvm::MapVector<llvm::StringRef, std::vector<llvm::StringRef>> OutputSections; std::vector<llvm::StringRef> SearchPaths; std::vector<llvm::StringRef> Undefined; bool AllowMultipleDefinition; |