Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

No, the architecture does matter. All Unity programs (and all compiled programs for that matter) are compiled to machine code, and each CPU family has a different machine code instruction set. PCs and most macs up to this point have x86 family processors which are all compatible with each other but a raspi has an Arm CPU (like the one in most phones or tablets). It’s true that the system calls for all Linux systems regardless of arch remain the same, but the actual instructions that are used to do computation and handle memory are very different.