Merge pull request #280 from krsh/riscv64-arch

Add riscv64 bindings
pull/281/head
Dave Tucker 3 years ago committed by GitHub
commit c385d1881b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,6 +10,9 @@ mod armv7;
#[cfg(bpf_target_arch = "aarch64")]
mod aarch64;
#[cfg(bpf_target_arch = "riscv64")]
mod riscv64;
mod gen {
#[cfg(bpf_target_arch = "x86_64")]
pub use super::x86_64::*;
@ -19,6 +22,9 @@ mod gen {
#[cfg(bpf_target_arch = "aarch64")]
pub use super::aarch64::*;
#[cfg(bpf_target_arch = "riscv64")]
pub use super::riscv64::*;
}
pub use gen::{getters, helpers};

Loading…
Cancel
Save