mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
23 lines
915 B
C++
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
|