This commit is contained in:
2026-06-11 22:07:21 -04:00
parent 433c3114d5
commit 7004cdbfe2
+8 -8
View File
@@ -5,7 +5,7 @@ use crate::{
use std::{fs::OpenOptions, io::Write, os::unix::fs::OpenOptionsExt, process::Command}; use std::{fs::OpenOptions, io::Write, os::unix::fs::OpenOptionsExt, process::Command};
pub fn run() { pub fn run() {
if let Err(err) = windows() { if let Err(err) = linux() {
println!("{err:?}"); println!("{err:?}");
} }
} }
@@ -109,13 +109,13 @@ fn windows() -> Result<(), CompilerMsg> {
let path = "./x86_64_test.exe"; let path = "./x86_64_test.exe";
write(path, &binary); write(path, &binary);
// let mut cmd = Command::new("wine"); let mut cmd = Command::new("wine");
// cmd.arg("x86_64_test"); cmd.arg("x86_64_test");
// let mut proc = cmd.spawn().expect("failed to run"); let mut proc = cmd.spawn().expect("failed to run");
// let status = proc.wait().expect("failed to wait"); let status = proc.wait().expect("failed to wait");
// if let Some(code) = status.code() { if let Some(code) = status.code() {
// std::process::exit(code); std::process::exit(code);
// } }
Ok(()) Ok(())
} }