Dylan Baker

Results 375 comments of Dylan Baker

@dwlsalmeida and I had been talking about this a while back, and I have some work on this. I pushed the work I have, which is not completed. Let me...

> Probably the biggiest annoyance is that we have to list every Rust file in the meson instead of just invoking it on lib.rs and letting it go. That could...

Okay, I opened a Draft PR with what I have cleaned up a little bit. I've also checked this with Mesa, and it seems to work for the one case...

Thanks for following up on this!

The Windows check failures do seem to be relevant, I think they're related to the changing the order of the compilers, since it looks like before that the test skipped...

You need to tell Meson to use it. `project('name', 'c', 'cpp')`, or, if you want to be more conservative: ```meson project('name', 'cpp') dep_llvm = dependency('llvm', method : 'config-tool', required :...

Also, what does the `dependency('llvm')` line look like?

It's telling you that it's only trying CMake as a dependency method, when the meson.build script calls `dependency('llvm')`, what additional arguments are being passed to it?

Could you include the relevant compile and link lines from the build.ninja?