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
Would it be possible to expose is_flag_supported in the public API?
I want to set -march={}, but the compiler may be older than the desired target architecture and reject it. I can't just use flag_if_supported, because if the flag is rejected, I don't want to ignore it. I want to set other flags as a fallback instead, and the fallback flags shouldn't be set unconditionally. (related to #268)
The text was updated successfully, but these errors were encountered:
Would it be possible to expose
is_flag_supported
in the public API?I want to set
-march={}
, but the compiler may be older than the desired target architecture and reject it. I can't just useflag_if_supported
, because if the flag is rejected, I don't want to ignore it. I want to set other flags as a fallback instead, and the fallback flags shouldn't be set unconditionally. (related to #268)The text was updated successfully, but these errors were encountered: