Description
Today, I'd like to ask for a small feature request, which – I think – could be useful to more people than just me.
It's about cross-compiling Go programs which shall use DuckDB. While building a binary for the platform you're developing on is pretty simple, doing the same with cross-compilation is not.
Given that there are three major operating systems these days (macOS, Linux, Windows), and two CPU architectures (x86-64 and ARM), you end up with quite a number of combinations: You essentially have six combinations as development base, and you have six combinations you might want to build.
E.g.:
- Build for macOS / ARM on a Linux / x86-64 machine.
- Build for Windows / x86-64 on a macOS / arm machine.
- And so on …
Effectively, this is 36 combinations in total.
Now here's my question: Since I find it pretty difficult to figure out how to cross-compile, would it maybe be possible to add information on this to the documentation of this module? I think that it doesn't need an example per combination, but having some general guidelines or tips would already be helpful (or even a link to a page which explains it in more detail).
What do you think of this?
PS: If someone is able to provide the commands, I'd be more than happy to work on the documentation and submit a PR. It's just that I don't know how to do it myself.