Pierrick Bouvier
Pierrick Bouvier
In general, errors appearing with optimizations enabled are due to undefined behavior (especially when different compilers trigger errors - clang and gcc in our case). When I took a look...
Thanks for reducing the test case. I investigated this using clang. At `-O0`, it works, and at `-O1` it fails. First, I would like to say the round mode setting...
See https://gcc.gnu.org/wiki/FloatingPointMath and this bug: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34678.
You can definitely try that and check tests now work on all optimization levels with gcc and clang. Another solution is to disable optimization explicitly for functions that manipulate the...
Good work! I can still observe some failures: ``` $ g++ --version g++ (Debian 12.2.0-14) 12.2.0 Copyright (C) 2022 Free Software Foundation, Inc. This is free software; see the source...
@xclaesse Followup for conversation on https://github.com/mesonbuild/meson/pull/12945
fixed extra parentheses on the if.
Report error only if dependency is required.
fixed lint issues
@eli-schwartz How can we indicate to meson test infra that the test is supposed to fail?