Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support llvm 10 - 17 #18

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,23 @@ pub extern crate inkwell_70 as inkwell;
pub extern crate inkwell_80 as inkwell;
#[cfg(feature = "inkwell-90")]
pub extern crate inkwell_90 as inkwell;

#[cfg(feature = "inkwell-100")]
pub extern crate llvm_sys_100 as llvm_sys;
#[cfg(feature = "inkwell-110")]
pub extern crate llvm_sys_110 as llvm_sys;
#[cfg(feature = "inkwell-120")]
pub extern crate llvm_sys_120 as llvm_sys;
#[cfg(feature = "inkwell-130")]
pub extern crate llvm_sys_130 as llvm_sys;
#[cfg(feature = "inkwell-140")]
pub extern crate llvm_sys_140 as llvm_sys;
#[cfg(feature = "inkwell-150")]
pub extern crate llvm_sys_150 as llvm_sys;
#[cfg(feature = "inkwell-160")]
pub extern crate llvm_sys_160 as llvm_sys;
#[cfg(feature = "inkwell-170")]
pub extern crate llvm_sys_170 as llvm_sys;

pub struct CompilerOptions {
pub bitcode_only: bool,
Expand Down
Loading