M .build.yml +1 -1
@@ 1,4 1,4 @@
-image: debian/bullseye
+image: debian/bookworm
packages:
- pkg-config
- curl
M src/bin/garnetc.rs +2 -0
@@ 57,6 57,8 @@ fn compile_rust(input_file: &Path, exe_n
let res = Command::new("rustc")
.stdin(Stdio::null())
.stdout(Stdio::inherit())
+ .arg("-C")
+ .arg("opt-level=3")
.arg("-o")
.arg(&exe_name)
.arg(&rust_file)