On 25/09/05 01:50PM, Patrick Steinhardt wrote: > +# The 'rust' module was only introduced in Meson 1.0. Furthermore, the module > +# does not seem to work on macOS as expected right now. As such, we only > +# conditionally enable tests. > +if meson.version().version_compare('>=1.0.0') and host_machine.system() != 'darwin' > + rustmod = import('rust') > + rustmod.test('rust', libgit_rs) > +endif Out of curiousity, what is the problem that we are seeing with macOS? I removed the darwin guard statement and didn't notice any problems when running `meson test rust`. Is this a well known problem with the Rust module? -Justin