Mercurial > hg
view rust/chg/build.rs @ 41535:7a90ff8cd14c
crecord: use raw string for regular expression
\s emits a SyntaxWarning in Python 3.8. Use a raw string to
avoid escaping the \.
Differential Revision: https://phab.mercurial-scm.org/D5819
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Mon, 04 Feb 2019 09:00:52 -0800 |
parents | cd490ac908c0 |
children | 1f5ab1a9363d |
line wrap: on
line source
extern crate cc; fn main() { cc::Build::new() .warnings(true) .file("src/sendfds.c") .file("src/sighandlers.c") .compile("procutil"); }