| //===- 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 |
| //===----------------------------------------------------------------------===// |
| #include "lld/Common/LLVM.h" |
| #include "llvm/ADT/StringRef.h" |
| #include "llvm/Option/ArgList.h" |
| // Parses command line options. |
| class ELFOptTable : public llvm::opt::GenericOptTable { |
| llvm::opt::InputArgList parse(Ctx &, ArrayRef<const char *> argv); |
| // Create enum with OPT_xxx values for each option in Options.td |
| #define OPTION(...) LLVM_MAKE_OPT_ID(__VA_ARGS__), |
| void printHelp(Ctx &ctx); |
| std::string createResponseFile(const llvm::opt::InputArgList &args); |
| std::optional<std::string> findFromSearchPaths(Ctx &, StringRef path); |
| std::optional<std::string> searchScript(Ctx &, StringRef path); |
| std::optional<std::string> searchLibraryBaseName(Ctx &, StringRef path); |
| std::optional<std::string> searchLibrary(Ctx &, StringRef path); |