floss.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
For people who care about, support, and build Free, Libre, and Open Source Software (FLOSS).

Administered by:

Server stats:

685
active users

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

@bugaevc More like meson users, nah?
Which is the rather typical issue of most developers being awful at system integration.

@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")

@bugaevc Userland wouldn't really be the right one, at least coming from unixes with a mix of base system + GNU software on the side for compatibility.

I think they should have exposed something like the target triple and dedicated functions for each part of it, plus matching on the compiler/linker/… being used (you can mix-match there).
Sergey Bugaev

@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.

@bugaevc That's because you cannot assume anything about the OS installation, the userland can be a complete patchwork, in fact I'd say it always is.

You should always do clean atomic detections based on exactly what you want to use.
Just like how Unix doesn't means X11 or that the entirety of freedesktop stuff is present.

Heck, Android could gain wayland support at some point.