[PATCH] mldev: disable build on Windows
Thomas Monjalon
thomas at monjalon.net
Fri Mar 10 10:18:32 CET 2023
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
More information about the dev
mailing list