Skip to content
This repository was archived by the owner on Feb 26, 2020. It is now read-only.

Commit e77ea09

Browse files
committed
use cc instead of gcc
1 parent 2e61821 commit e77ea09

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ documentation = "https://beta.docs.rs/hidapi"
1717
libc = "0.2.15"
1818

1919
[build-dependencies]
20-
gcc = "0.3"
20+
cc = "1.0"

build.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@
1717
// along with hidapi_rust. If not, see <http://www.gnu.org/licenses/>.
1818
// *************************************************************************
1919

20-
extern crate gcc;
20+
extern crate cc;
2121

2222
fn main() {
2323
compile();
2424
}
2525

2626
#[cfg(target_os = "linux")]
2727
fn compile() {
28-
let mut config = gcc::Config::new();
28+
let mut config = cc::Build::new();
2929
config.file("etc/hidapi/linux/hid.c").include("etc/hidapi/hidapi");
3030
config.compile("libhidapi.a");
3131
println!("cargo:rustc-link-lib=udev");
3232
}
3333

3434
#[cfg(target_os = "windows")]
3535
fn compile() {
36-
gcc::Config::new()
36+
cc::Build::new()
3737
.file("etc/hidapi/windows/hid.c")
3838
.include("etc/hidapi/hidapi")
3939
.compile("libhidapi.a");
@@ -42,7 +42,7 @@ fn compile() {
4242

4343
#[cfg(target_os = "macos")]
4444
fn compile() {
45-
gcc::Config::new()
45+
cc::Build::new()
4646
.file("etc/hidapi/mac/hid.c")
4747
.include("etc/hidapi/hidapi")
4848
.compile("libhidapi.a");

0 commit comments

Comments
 (0)