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
The Xclang command passed to the compiler is -Xclang -disable-O0-optnone, i.e. the -O0 gets removed.
I know there's some compiler optimization flag sanitization happening somewhere, but in this case it's breaking legit usage.
The workaround I used in the end was adding -O0 to CFLAGS and removing --enable-debug from the configure command.