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
Running goblint on Mac OS 14 (maybe limited to older Intel Macs) fails immediately because of attributes like __attribute__((availability(macos,introduced=10.15))). We can handle something like __attribute__((availability(macos,introduced && 10))), but CIL does not handle assignment expressions and I'm not sure what 10.15 actually is because gcc 14 can also handle introduced=10.15.2, so are these strings then?
Anyway, the problem is goblint fails out-of-the-box on Intel Macs with the current OS.
The text was updated successfully, but these errors were encountered:
vesalvojdani
changed the title
Everything fails on MacOS 15 because of attributes with assignment in time.h
Everything fails on MacOS 14 because of attributes with assignment in time.h
Aug 6, 2024
avsm
pushed a commit
to avsm/opam-repository
that referenced
this issue
Sep 5, 2024
Running goblint on Mac OS 14 (maybe limited to older Intel Macs) fails immediately because of attributes like
__attribute__((availability(macos,introduced=10.15)))
. We can handle something like__attribute__((availability(macos,introduced && 10)))
, but CIL does not handle assignment expressions and I'm not sure what10.15
actually is because gcc 14 can also handleintroduced=10.15.2
, so are these strings then?Anyway, the problem is goblint fails out-of-the-box on Intel Macs with the current OS.
The text was updated successfully, but these errors were encountered: