mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 08:11:12 +00:00
update to llvm 12
This commit is contained in:
parent
22ff337f64
commit
8e227c7e7c
5 changed files with 56 additions and 58 deletions
|
@ -204,7 +204,7 @@ pub fn gen_from_mono_module(
|
|||
}
|
||||
|
||||
// assemble the .ll into a .bc
|
||||
let _ = Command::new("llvm-as-10")
|
||||
let _ = Command::new("llvm-as-12")
|
||||
.env_clear()
|
||||
.args(&[
|
||||
app_ll_dbg_file.to_str().unwrap(),
|
||||
|
@ -216,7 +216,7 @@ pub fn gen_from_mono_module(
|
|||
|
||||
// write the .o file. Note that this builds the .o for the local machine,
|
||||
// and ignores the `target_machine` entirely.
|
||||
let _ = Command::new("llc-10")
|
||||
let _ = Command::new("llc-12")
|
||||
.env_clear()
|
||||
.args(&[
|
||||
"-filetype=obj",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue