项目作者: evpobr

项目描述 :
Rust FFI bindings to libsndfile
高级语言: Rust
项目地址: git://github.com/evpobr/sndfile-sys.git
创建时间: 2018-10-15T05:18:20Z
项目社区:https://github.com/evpobr/sndfile-sys

开源协议:

下载


sndfile-sys

Build Status

Rust FFI bindings to libsndfile.

Notes

MSVC toolchain

Starting from version v0.1.2 sndfile-sys can use Vcpkg package manager to search for
native libsndfile library (thanks to Vcpkg crate):

  • Install Vcpkg
  • install static libsndfile library (x86|x64): vcpkg install libsndfile:x64-windows-static
  • Add Vcpkg path (e.g. d:\vcpkg) to VCPKG_ROOT environment variable
  • Add -Ctarget-feature=+crt-static to RUSTFLAGS environment variable

This search method affects MSVC toolchain only. You can disable it completely with environment varible VCPKGRS_DISABLE set to 1.

Use can link to dynamic libsndfile (not recommended for MSVC toolchain):

  • Install dynamic libsndfile library with command: vcpkg install libsndfile:x64-windows
  • Delete RUSTFLAGS environment variable
  • Set VCPKGRS_DYNAMIC environment variable to 1

Starting from version v0.2.2 sndfile-sys can use PkgConfig to search for native
libsndfile library (thanks to pkg-config-rs crate):