Skip to content

Commit

Permalink
fix gcc::Config deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hone committed Aug 18, 2017
1 parent a324cea commit 331852f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/neon-runtime/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn link_library() {
format!("build\\{}\\obj\\neon\\neon.obj", configuration)
};

gcc::Config::new().object(object_path).compile("libneon.a");
gcc::Build::new().object(object_path).compile("libneon.a");
}

fn debug() -> bool {
Expand Down

0 comments on commit 331852f

Please sign in to comment.