mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 20:25:34 -05:00
fix: jit arguments must be uint64
This commit is contained in:
committed by
Quentin Bourgerie
parent
855dabc91e
commit
c3d6bea247
@@ -69,10 +69,10 @@ llvm::cl::opt<std::string> jitFuncname(
|
||||
llvm::cl::desc("Name of the function to execute, default 'main'"),
|
||||
llvm::cl::init<std::string>("main"));
|
||||
|
||||
llvm::cl::list<int>
|
||||
llvm::cl::list<uint64_t>
|
||||
jitArgs("jit-args",
|
||||
llvm::cl::desc("Value of arguments to pass to the main func"),
|
||||
llvm::cl::value_desc("passname"), llvm::cl::ZeroOrMore);
|
||||
llvm::cl::value_desc("argument(uint64)"), llvm::cl::ZeroOrMore);
|
||||
|
||||
llvm::cl::opt<bool> toLLVM("to-llvm", llvm::cl::desc("Compile to llvm and "),
|
||||
llvm::cl::init<bool>(false));
|
||||
|
||||
Reference in New Issue
Block a user