The build breaks because of the weak symbols, so we can define this cause: Fixes: 9637de38a2e3 ("mldev: add scalar type conversion")
10/03/2023 10:07, David Marchand: > --- a/lib/mldev/meson.build > +++ b/lib/mldev/meson.build > +if is_windows > + subdir_done() > +endif More complete handling: if is_windows build = false reason = 'not supported on Windows' subdir_done() endif