more wip; now we just need to generate the exposed procs at the right time

This commit is contained in:
Folkert 2023-02-08 22:56:38 +01:00
commit 6c15284a8f
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
255 changed files with 11686 additions and 3025 deletions

View file

@ -315,7 +315,7 @@ fn gen_from_mono_module_llvm<'a>(
// different systems name this executable differently, so we shotgun for
// the most common ones and then give up.
let bc_to_object = Command::new("llc")
.args(&[
.args([
"-relocation-model=pic",
"-filetype=obj",
app_bc_file.to_str().unwrap(),
@ -371,7 +371,7 @@ fn gen_from_mono_module_llvm<'a>(
// different systems name this executable differently, so we shotgun for
// the most common ones and then give up.
let ll_to_object = Command::new("llc")
.args(&[
.args([
"-relocation-model=pic",
"-filetype=obj",
app_ll_dbg_file.to_str().unwrap(),