> Sadly Valve will be dropping 32-bit support and due to this poor discision on their part we've had no choice but to discontinue support for Steam on Twister OS.
twister os might want to consider dropping 32bit support themselves, especially given that their minimum requirements are a pi4.
The Steam thing looks like a separate issue from whether Twister OS is 32- or 64-bit. They're running the x86 version of Steam in an emulator, and that emulator probably only supports 32-but software.
box86 runs x86 binaries in an emulator that translates syscalls and library calls to native syscalls and library calls. The JIT compiler they're using and the syscalls tables are specifically for 32 bit x86, and because they're simply passing calls through the host system must match both endianness and word size, so running a 32 bit x86 executable requires a 32 bit little endian host.
ARMv8 can run in either 32 bit "aarch32" or 64 bit "aarch64" modes, and both require separate runtimes, as does 32/64 bit x86. So you need 32 bit ARM libraries for box86's translation to work.
It could be updated to support 64 bit executables, but that would be an amd64/x86_64 -> aarch64 translation layer. Doing 32 -> 64 bit or vice versa is much, much harder, and requires manual translation of calls for specific libraries and kernels to be done, as nested binary data is passed in some library/syscalls that needs to be converted.
There are millions of perfectly fine 32-bit ARM boards out there that draw a fraction of the power that a similarly spec'd x86 box would.
It would be a good thing, from the perspective of not wasting energy nor creating more e-waste, for 32-bit ARM boards to be supported for people who own them.
I work for one of the largest game developers/publishers out there and literally all of our games are built and released for x64. I don't even remember last time we built x86 binaries of any of our games.
> Is Twister OS a 64-bit OS?
> Twister OS is a 32-bit OS.
> Why is Steam not starting for me?
> Sadly Valve will be dropping 32-bit support and due to this poor discision on their part we've had no choice but to discontinue support for Steam on Twister OS.
twister os might want to consider dropping 32bit support themselves, especially given that their minimum requirements are a pi4.