Sign in
fuchsia
/
third_party
/
rust-crates
/
refs/heads/sandbox/robtsuk/font-rs
/
.
/
rustc_deps
/
vendor
/
font-rs
/
build.rs
blob: dead2fc0cfe7ae1241c619e5f90c2b99b1ce49af [
file
] [
log
] [
blame
]
extern
crate gcc
;
fn
main
()
{
gcc
::
Build
::
new
()
.
file
(
"src/accumulate.c"
)
.
flag
(
"-march=native"
)
.
flag
(
"-std=c99"
)
.
compile
(
"libaccumulate.a"
);
}