> + ;; We really only support targeting Linux and mingw. > + (setenv "GOOS" (if (string-contains target "mingw") > + "windows" > + "linux")) If only Linux and mingw is supported, perhaps some kind of error could be thrown if 'target' does not contain either "mingw" or "linux", to avoid silently compiling for the wrong operating system? There is the Hurd as well for example. I would recommend throwing the error (or returning #f?) from lower, to notify the user cross-compilation is not possible as early as possible. > + (setenv "GOARM" "7") ; Default is 6, target our armhf-linux architecture. Would it be possible to only set that variable when targetting armhf-linux? Setting this when targetting other architectures seems unlikely to cause issues, but still seems subtly wrong to me, for some value of subtle. Note: I do not know much about go and did not test this. Greetings, Maxime.