How do I debug a proc macro?

1.6k Views Asked by At

So I have a proc macro which is throwing an error.

Specifally shader! from vulkano_shaders is throwing:

error: proc macro panicked
  --> src\main.rs:6:5
   |
6  | /     vulkano_shaders::shader!{
7  | |         ty: "compute",
8  | |         src: "
9  | |         #version 450
...  |
16 | |         }"
17 | |     }
   | |_____^
   |
   = help: message: called `Result::unwrap()` on an `Err` value: ParseError(UnknownConstant("Capability", 61))

How could I debug this?

Minimal reproducible example:

main.rs:

fn main() {
    println!("Hello, world!");
}

mod test_shader {
    vulkano_shaders::shader!{
        ty: "compute",
        src: "
        #version 450

        #extension GL_KHR_shader_subgroup_basic: enable

        void main() {
            uint tester0 = gl_SubgroupSize;
            uint tester1 = gl_SubgroupID;
        }"
    }
}

Dependencies:

vulkano = "0.19.0"
vulkano-shaders = "0.19.0"

Project zip: https://drive.google.com/file/d/1fwXNZOTQOlunVAbYWK3rJRmQnDcWvySU/view?usp=sharing

0

There are 0 best solutions below