Add a no_ibv

This commit is contained in:
Angelos Katharopoulos
2025-11-20 12:35:37 -08:00
parent b9b78b1059
commit 5d7e6a0642
3 changed files with 31 additions and 3 deletions

View File

@@ -1077,7 +1077,9 @@ class IBVGroup : public GroupImpl {
};
bool is_available() {
return true;
if (__builtin_available(macOS 26.2, *)) {
return true;
}
}
std::shared_ptr<GroupImpl> init(bool strict /* = false */) {