The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

315 B

Rust now supports the b_ndebug option

Which controls the debug_assertions cfg, which in turn controls debug_assert!() macro. This macro is roughly equivalent to C's assert(), as it can be toggled with command line options, unlike Rust's assert!(), which cannot be turned off, and is not designed to be.