On Sun, Sep 6, 2020 at 10:53 PM 'Hubert Hirtz' via golang-nuts <[email protected]> wrote:
> I am trying to cross-compile a project that depends on sqlite3 on a > amd64 machine (host) for an armhf machine (target), using clang with the > appropriate "--target" flag. > > The build fails on runtime/cgo with the following errors: It might be possible that the CGo-free SQLite port at modernc.org/sqlite [0] can be used. Release v1.7.0 now supports arm[1] and arm64[2]. [0]: https://godoc.org/modernc.org/sqlite [1]: https://gitlab.com/cznic/sqlite/-/blob/f228816300a40a6f8cd90293a629fffad952c6ce/testdata/testlog-linux-arm [2]: https://gitlab.com/cznic/sqlite/-/blob/f228816300a40a6f8cd90293a629fffad952c6ce/testdata/testlog-linux-arm64 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CAA40n-VbAZfuCB4stY_DD1FkXOg0USFF9DLdjJ4R85sf2-WtZQ%40mail.gmail.com.
