Files
revng-revng/include/revng/Model/Importer/Binary/BinaryImporterOptions.h
2022-04-20 09:55:18 +02:00

23 lines
915 B
C++

#pragma once
//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "llvm/Support/CommandLine.h"
#include "revng/Support/CommandLine.h"
inline llvm::cl::list<std::string> ImportDebugInfo("import-debug-info",
llvm::cl::desc("path"),
llvm::cl::ZeroOrMore,
llvm::cl::cat(MainCategory));
#define DESCRIPTION "base address where dynamic objects should be loaded"
inline llvm::cl::opt<uint64_t> BaseAddress("base",
llvm::cl::desc(DESCRIPTION),
llvm::cl::value_desc("address"),
llvm::cl::cat(MainCategory),
llvm::cl::init(0x400000));
#undef DESCRIPTION