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
During work on openvpn#836 it was found that the mingw buildbot compiles with -O2 (as it should) and the GHA mingw/cmake build seems to not use -O2, which makes a notable difference for static inline foo() vs. non-static inline foo() definitions - the latter fail to link (not inlined, and not instantiated) when compiling without optimization.
Can we add a mingw build with no -O2 for that? Or any other good suggestion how to catch such omissions?
The text was updated successfully, but these errors were encountered:
During work on openvpn#836 it was found that the mingw buildbot compiles with
-O2
(as it should) and the GHA mingw/cmake build seems to not use-O2
, which makes a notable difference forstatic inline foo()
vs. non-staticinline foo()
definitions - the latter fail to link (not inlined, and not instantiated) when compiling without optimization.Can we add a mingw build with no
-O2
for that? Or any other good suggestion how to catch such omissions?The text was updated successfully, but these errors were encountered: