# gcc-rs **Repository Path**: mirrors_servo/gcc-rs ## Basic Information - **Project Name**: gcc-rs - **Description**: Build library helpful in invoking gcc as a C compiler for Rust - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: servo - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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. ```rust 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.