#macro #plugin

nightly compile_msg

A plugin for emitting errors, warnings and notes to the developer at compile time

6 releases

Uses old Rust 2015

0.1.5 Feb 9, 2015
0.1.4 Feb 7, 2015
0.1.3 Jan 9, 2015
0.1.1 Nov 14, 2014

#1469 in Development tools

Download history 71/week @ 2023-02-03 85/week @ 2023-02-10 74/week @ 2023-02-17 46/week @ 2023-02-24 49/week @ 2023-03-03 24/week @ 2023-03-10 50/week @ 2023-03-17 42/week @ 2023-03-24 42/week @ 2023-03-31 59/week @ 2023-04-07 42/week @ 2023-04-14 30/week @ 2023-04-21 49/week @ 2023-04-28 61/week @ 2023-05-05 45/week @ 2023-05-12 49/week @ 2023-05-19

210 downloads per month

MIT/Apache

7KB
98 lines

compile_msg

Build Status

A syntax extension for emitting messages at compile time, via the compiler, similar to #warning and #error in the C preprocessor. Four macros are provided (in order of increasing severity):

  • compile_note: tell the user a tidbit of information without implying it is a problem,
  • compile_warning: tell the user that something could go wrong,
  • compile_error: tell the user about some error, compilation will not stop immediately, but will halt before any compiler passes after macro expansion.
  • compile_fatal: tell the user about a catastrophic error and immediately halt compilation. compile_error is strongly preferred as it allows further errors and warnings to be picked up in a single pass.

The macros can be placed as an item (expanding to nothing), and as an expression (expanding to a literal unit, i.e. ()). They are best used in conditionally compiled items, e.g. if a certain operating system is entirely unsupported, one can use compile_error! with an appropriate #[cfg] attribute.

Usage

Ensure your Cargo.toml contains:

[dependencies]
compile_msg = "0"

and then load the syntax in the normal manner:

#![feature(plugin)]

#[plugin] extern crate compile_msg;

#[cfg(target_os = "hal")]
compile_error!("I'm sorry, Dave, I'm afraid I can't do that.");


fn main() {
    compile_note!("please be careful"); // note: please be careful


    compile_warning!("take more care"); // warning: take more care


    compile_error!("things are breaking"); // error: things are breaking


    compile_fatal!("catastrophic failure!"); // error: catastrophic failure
    // (compilation stops here)


    compile_warning!("not emitted");
}

(If that compiled, it would be equivalent to fn main() {} at runtime.)

No runtime deps