diff options
Diffstat (limited to 'COFF/Config.h')
-rw-r--r-- | COFF/Config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/COFF/Config.h b/COFF/Config.h index 1b0e24042710..309e1fbf99e3 100644 --- a/COFF/Config.h +++ b/COFF/Config.h @@ -122,6 +122,7 @@ struct Configuration { bool dll = false; StringRef implib; std::vector<Export> exports; + bool hadExplicitExports; std::set<std::string> delayLoads; std::map<std::string, int> dllOrder; Symbol *delayLoadHelper = nullptr; @@ -189,6 +190,10 @@ struct Configuration { // Used for /thinlto-object-suffix-replace: std::pair<llvm::StringRef, llvm::StringRef> thinLTOObjectSuffixReplace; + // Used for /lto-obj-path: + llvm::StringRef ltoObjPath; + + uint64_t align = 4096; uint64_t imageBase = -1; uint64_t fileAlign = 512; uint64_t stackReserve = 1024 * 1024; |