This website requires JavaScript.
Explore
Help
Sign In
occheung
/
libfringe
forked from
M-Labs/libfringe
Watch
1
Star
0
Fork
You've already forked libfringe
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
2760a0a7aa
libfringe
/
build.rs
6 lines
101 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
(
)
{
move Valgrind handling into Context fix #3 This takes all Valgrind functionality private again. Valgrind stack registrations are now associated with a Context, not with a Stack. This makes sense, since it's only actually a stack when a Context is running on it. Perhaps Valgrind will even be able to detect early stack frees now.
2015-04-16 14:30:10 +08:00
gcc
::
compile_library
(
"
libvalgrind.a
"
,
&
[
"
src/debug/valgrind.c
"
]
)
;
initial commit
2014-12-23 11:24:40 +08:00
}