https://issues.dlang.org/show_bug.cgi?id=22689
Issue ID: 22689
Summary: kFreeBSD bindings broken after switch to
CRuntime_Glibc
Product: D
Version: D2
Hardware: All
OS: Other
Status: NEW
Severity: blocker
Priority: P1
Component: druntime
Assignee: [email protected]
Reporter: [email protected]
The druntime bindings now wrongly have linux-specific bindings behind
`version(CRuntime_Glibc)`, as well as wrongly assumes `CRuntime` and `OS`
versions are mutually exclusive (they are not).
There are also some cases of C runtime-specific bindings being behind
`version(linux)`, but that was the case before the global rename of `linux` to
`CRuntime_Glibc`.
--