← Back to context

Comment by Asmod4n

7 hours ago

Win32 is the most stable abi on the Linux desktop.

Dead wrong. Win32 (externally) only seems stable, but internally it changes between Windows releases. Win7 syscalls are completely different from Win11 syscalls, meaning if I want to release a binary _without relying_ on Win32 I need to provide full syscall mappings _for each and every Windows version_. This doesn't happen on Linux.

  • > only seems stable, but internally it changes

    That's literally the definition of it being stable. Programs written against an interface keep working despite the implementation changing. The Linux kernel also constantly changes internally but programs written against syscalls keep working, so it is stable; that fact doesn't stop being a fact just because I dislike perf_event_open(2) or whatever. This is all very basic and easy to understand.

  • >> Win32 is the most stable abi on the Linux desktop.

    > Dead wrong [...] if I want to release a binary _without relying_ on Win32

    Then you are not using the Win32 ABI, are you?