pmunts
pmunts
I experimented with lists of object instances: ``` ' Define an object class class Object var myadjective = "UNINITIALIZED" def Describe(s) myadjective = s enddef def Write() print "I'm an...
Debian 11 (Bullseye) has a quite a few cross-toolchains in its package repository: ``` pmunts@PHILIPPI:~$ apt-cache search gnat-10 | egrep '^gnat' gnat-10 - GNU Ada compiler gnat-10-aarch64-linux-gnu - GNU Ada...
to run on 64-bit Raspberry Pi OS (which is based on arm64 Debian 12). ARM64 Linux computers are becoming mainstream; I even saw an ARM64 Chromebook at Best Buy on...
I maintain some library crates with post-fetch scripts that alter the superordinate program project in various ways. These post-fetch scripts scan the contents of the `GPR_PROJECT_PATH` environment variable to find...
With alr 2.0, the only way to trigger a post-fetch seems to be `alr build`. `alr clean` used to trigger post-fetch, and I think `alr update` is supposed to but...
I maintain library crates that need to modify the superordinate program project. For example, on Windows, the `remoteio` crate post-fetch script needs to copy `hidapi.dll` to the `bin/` directory for...