File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -56,15 +56,17 @@ static llvm::cl::opt<std::string> SlabAllocateSizeString(
5656static llvm::cl::opt<std::string>
5757 OOPExecutor (" oop-executor" ,
5858 llvm::cl::desc (" Launch an out-of-process executor to run code" ),
59- llvm::cl::ValueOptional, llvm::cl::cat(OOPCategory));
59+ llvm::cl::init(" " ), llvm::cl::ValueOptional,
60+ llvm::cl::cat(OOPCategory));
6061static llvm::cl::opt<std::string> OOPExecutorConnect (
6162 " oop-executor-connect" ,
6263 llvm::cl::desc (
6364 " Connect to an out-of-process executor through a TCP socket" ),
6465 llvm::cl::value_desc(" <hostname>:<port>" ));
6566static llvm::cl::opt<std::string>
6667 OrcRuntimePath (" orc-runtime" , llvm::cl::desc(" Path to the ORC runtime" ),
67- llvm::cl::ValueOptional, llvm::cl::cat(OOPCategory));
68+ llvm::cl::init(" " ), llvm::cl::ValueOptional,
69+ llvm::cl::cat(OOPCategory));
6870static llvm::cl::opt<bool > UseSharedMemory (
6971 " use-shared-memory" ,
7072 llvm::cl::desc (" Use shared memory to transfer generated code and data" ),
You can’t perform that action at this time.
0 commit comments