Skip to content

scottjmaddox/rust-nice-sys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rust-nice-sys

Rust FFI bindings to libnice

How To Add a New Arch/OS Pair

To add support for a new architecture / operating system pair, follow the directions below.

Install the bindgen executable with cargo:

cargo install bindgen

Generate bindings (replace arch with your target_arch, and os with your target_os):

bindgen wrapper.h -o src/arch_os.rs -- `pkg-config --cflags nice`

Add a new entry in lib.rs(replace arch with your target_arch, and os with your target_os):

#[cfg(all(target_arch = "arch", target_os = "os"))]
mod arch_os;
#[cfg(all(target_arch = "arch", target_os = "os"))]
pub use arch_os::*;

target_arch options:

  • x86
  • x86_64
  • mips
  • powerpc
  • powerpc64
  • arm
  • aarch64

target_os options:

  • windows
  • macos
  • ios
  • linux
  • android
  • freebsd
  • dragonfly
  • bitrig
  • openbsd
  • netbsd

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Rust FFI bindings to [libnice](https://nice.freedesktop.org/wiki/)

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages