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
Clang 18 fails to produce a working unwinder because the event_send_trigger function isn't inlined and the 5.4 kernels complain about bpf calls and bpf-tail calls both being present not being allowed. I guess "static inline" isn't strong enough and we need to break out the always_inline attribute?
Proposal:
Use static inline attribute((always_inline))
Create an OPTI_INLINE macro that expands to this use that everywhere
The text was updated successfully, but these errors were encountered:
Clang 18 fails to produce a working unwinder because the event_send_trigger function isn't inlined and the 5.4 kernels complain about bpf calls and bpf-tail calls both being present not being allowed. I guess "static inline" isn't strong enough and we need to break out the always_inline attribute?
Proposal:
The text was updated successfully, but these errors were encountered: