//===- Driver.h -------------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLD_ELF_DRIVER_H #define LLD_ELF_DRIVER_H #include "lld/Common/LLVM.h" #include "llvm/ADT/StringRef.h" #include "llvm/Option/ArgList.h" #include namespace lld::elf { // Parses command line options. class ELFOptTable : public llvm::opt::GenericOptTable { public: ELFOptTable(); llvm::opt::InputArgList parse(ArrayRef argv); }; // Create enum with OPT_xxx values for each option in Options.td enum { OPT_INVALID = 0, #define OPTION(_1, _2, ID, _4, _5, _6, _7, _8, _9, _10, _11, _12) OPT_##ID, #include "Options.inc" #undef OPTION }; void printHelp(); std::string createResponseFile(const llvm::opt::InputArgList &args); std::optional findFromSearchPaths(StringRef path); std::optional searchScript(StringRef path); std::optional searchLibraryBaseName(StringRef path); std::optional searchLibrary(StringRef path); } // namespace lld::elf #endif