Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
avi-starkware committed Nov 13, 2024
1 parent 2cda2b0 commit 264bf17
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 31 deletions.
22 changes: 0 additions & 22 deletions crates/bin/starknet-native-compile/build.rs

This file was deleted.

12 changes: 3 additions & 9 deletions crates/bin/starknet-native-compile/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,18 @@ mod utils;
struct Args {
/// The path of the Sierra file to compile.
path: PathBuf,
/// The output file name (default: output.so).
output: Option<String>,
/// The output file path.
output: PathBuf,
}

const DEFAULT_OUTPUT_FILE: &str = "./output.so";

fn main() {
// TODO(Avi, 01/12/2024): Find a way to restrict time, memory and file size during compilation.
let args = Args::parse();
let path = args.path;
let output = args.output.unwrap_or_else(|| DEFAULT_OUTPUT_FILE.to_string());
let output = args.output;

println!("Loading Sierra program from file: {:?}", &path);
let sierra_program = load_sierra_program_from_file(&path);

println!("Compiling Sierra program into file {:?}", &output);
let start = std::time::Instant::now();
let mut contract_executor = AotContractExecutor::new(&sierra_program, OptLevel::default())
.unwrap_or_else(|err| {
eprintln!("Error compiling Sierra program: {}", err);
Expand All @@ -39,5 +34,4 @@ fn main() {
eprintln!("Error saving compiled program: {}", err);
process::exit(1);
});
println!("Compilation successful. Elapsed: {:?}", start.elapsed());
}

0 comments on commit 264bf17

Please sign in to comment.