#Meson needs to learn that Linux is not an operating system unto itself.
No really, like 95% checks for host_machine.system() == 'linux' are wrong, unless you really care about *kernel* specifics like Linux kernel modules. Typically what you want to check is:
- is my compiler GCC / Clang? (use the Meson compiler object for that!)
- is my libc (a recent enough) glibc?
- does this system use a "freedesktop" GUI stack?
- etc etc
@lanodan Meson users too should be aware of this and use it properly, but Meson shouldn't have made it that easy to misuse this.
Like ugh, why didn't they make machine.kernel() and machine.userland() (would return "linux"/"gnu", "linux"/"android", "freebsd"/"freebsd", "freebsd"/"gnu", "xnu"/"darwin")
@lanodan yes, target triple + some sane (i.e. not just a regex) API to match against it would also be good. And yes "GNU" is problematic for that reason, and also I have no idea what to call the various non-GNU userlands seen on Linux in the wild (as seen in: Alpine, Chimera Linux, OpenWrt...) — just calling each one by its own name is not going to be any useful.
Maybe we should file an issue and write a proposal over at Meson's issue tracker.