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
20c13d4 added support for eventfd on FreeBSD. FreeBSD has eventfd in FreeBSD 13, but not in FreeBSD 12. FreeBSD 12 is still supported upstream and therefore rustc builds its distribution builds using FreeBSD 12, which fails because of the rustix change. rustix::backend::syscalls::eventfd gets linked into librustc_driver.so despite not being used (I'm not sure why, maybe something weird around dylibs?) and then it fails to link with the main binary because of the undefined symbol.