This website requires JavaScript.
Explore
Help
Sign In
morgan
/
libfringe
forked from
M-Labs/libfringe
Watch
1
Star
0
Fork
You've already forked libfringe
0
Code
Pull Requests
Activity
7e0b126f42
libfringe
/
build.rs
6 lines
95 B
Rust
Raw
Normal View
History
Unescape
Escape
simplify build script
2015-03-27 10:48:51 +08:00
extern
crate
gcc
;
initial commit
2014-12-23 11:24:40 +08:00
fn
main
(
)
{
factor Valgrind support out and expose it Now other Stack / StackSource implementations can use the same Valgrind code. Ref #3.
2015-04-16 10:25:52 +08:00
gcc
::
compile_library
(
"
libvalgrind.a
"
,
&
[
"
src/valgrind.c
"
]
)
;
initial commit
2014-12-23 11:24:40 +08:00
}