You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building the python extension with meson is always quiet as it unconditionally passes the --quiet option while the Makefile build only sets the --quiet options when the build is not verbose (V is not set). It makes it impossible to verify the options passed to the compiler and linker for example.
The text was updated successfully, but these errors were encountered:
This could be supported by adding a custom meson_options.txt e.g. option('setuptools-verbose').
Preferably it would be automatic with meson build --verbose. But the compilation is being done indirectly by Python setuptools so Meson's backend doesn't know about it.
Building the python extension with
meson
is always quiet as it unconditionally passes the--quiet
option while the Makefile build only sets the--quiet
options when the build is not verbose (V
is not set). It makes it impossible to verify the options passed to the compiler and linker for example.The text was updated successfully, but these errors were encountered: