You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Alex Crichton 96c9e44ce3 Bump to 0.1.0 10 years ago
src Improve error messages slightly around running commands 10 years ago
.gitignore Initial commit 10 years ago
Cargo.toml Bump to 0.1.0 10 years ago
LICENSE-APACHE Add a README/licenses 10 years ago
LICENSE-MIT Add a README/licenses 10 years ago
README.md Add a README/licenses 10 years ago

README.md

gcc-rs

A simple library meant to be used as a build dependency with Cargo packages in order to build a set of C files into a static archive.

extern crate gcc;

fn main() {
    gcc::compile_library("libfoo.a", &["foo.c", "bar.c"]);
}

License

gcc-rs is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.

See LICENSE-APACHE, and LICENSE-MIT for details.