Skip to content

Commit

Permalink
Add initial compilation support for RISC V
Browse files Browse the repository at this point in the history
  • Loading branch information
aimixsaka committed Dec 29, 2023
1 parent 5f4058d commit 79536da
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nih_plug_xtask/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ pub enum CompilationTarget {
pub enum Architecture {
X86,
X86_64,
RISCV64,
// There are also a ton of different 32-bit ARM architectures, we'll just pretend they don't
// exist for now
AArch64,
Expand Down Expand Up @@ -590,6 +591,8 @@ fn compilation_target(cross_compile_target: Option<&str>) -> Result<CompilationT
let architecture = Architecture::X86_64;
#[cfg(target_arch = "aarch64")]
let architecture = Architecture::AArch64;
#[cfg(target_arch = "riscv64")]
let architecture = Architecture::RISCV64;

#[cfg(target_os = "linux")]
return Ok(CompilationTarget::Linux(architecture));
Expand Down Expand Up @@ -684,6 +687,9 @@ fn vst3_bundle_library_name(package: &str, target: CompilationTarget) -> String
CompilationTarget::Linux(Architecture::X86_64) => {
format!("{package}.vst3/Contents/x86_64-linux/{package}.so")
}
CompilationTarget::Linux(Architecture::RISCV64) => {
format!("{package}.vst3/Contents/riscv64-linux/{package}.so")
}
CompilationTarget::Linux(Architecture::AArch64) => {
format!("{package}.vst3/Contents/aarch64-linux/{package}.so")
}
Expand Down

0 comments on commit 79536da

Please sign in to comment.