#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 <optional>
namespace lld::elf {
class ELFOptTable : public llvm::opt::GenericOptTable { … };
enum { … };
void printHelp();
std::string createResponseFile(const llvm::opt::InputArgList &args);
std::optional<std::string> findFromSearchPaths(StringRef path);
std::optional<std::string> searchScript(StringRef path);
std::optional<std::string> searchLibraryBaseName(StringRef path);
std::optional<std::string> searchLibrary(StringRef path);
}
#endif