Search code examples
32bit-64bitvala

Bitness of the system on Vala


As for the Vala language cross-platform to know the bitness of the system?


Solution

  • sizeof(void*) will be 8 for 64-bit systems and 4 for 32 bit systems. Also, 2 for 16 bit systems, but I don't even know that glib will work there.