pharo-project / pharo-zeroconf

ZeroConf script generator for http://get.pharo.org
16 stars 15 forks source link

64bits Pharo loaded on 32 bits Raspberry OS Bookworm #43

Open robvanlopik opened 8 months ago

robvanlopik commented 8 months ago

The scripts use uname -m to determine the architecture. Raspberry OS Bookworm (12) however loada on a Pi4 or Pi5 a 64bits kernel, while the OS is 32bits. It turns out that uname in this case reports the kernel architecture, i.e. aarch64. Instead the scripts should use either dpkg --print-architecture >> armhf or getconf LONG_BIT >> 32

Ducasse commented 8 months ago

Thanks for this feedback!!!