#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 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 BaseAddress("base", llvm::cl::desc(DESCRIPTION), llvm::cl::value_desc("address"), llvm::cl::cat(MainCategory), llvm::cl::init(0x400000)); #undef DESCRIPTION