crossbuild
crossbuild copied to clipboard
:earth_africa: multiarch cross compiling environments
I've been using this docker container to cross-compile some libraries for Mac OS for quite a long time. It works great ! After a quick look to the content of...
When I am using curl or wget inside of container to download some files it gives me certificate error: ``` wget https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz --2022-01-08 03:41:05-- https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz Resolving pkgconfig.freedesktop.org (pkgconfig.freedesktop.org)... 131.252.210.176, 2610:10:20:722:a800:ff:feda:470f...
Related to issue #48 This allows developers to use the latest packages e.g. cmake 3.18.4 Also published to Docker Hub here: https://hub.docker.com/r/kmturley/crossbuild/tags Test using `FROM kmturley/crossbuild`
multiarch/crossbuild currently uses Debian stretch: `FROM buildpack-deps:stretch-curl` This comes with cmake version 3.7.2 https://packages.debian.org/stretch/devel/cmake Therefore I took the old CMake tutorial (which is compatible with cmake 3.3+) https://github.com/Kitware/CMake/tree/161b33f12b9a225607a4ea8339eabd4875bebbfe/Help/guide/tutorial/Complete I placed...
please update the build on hub.docker and add docker Tags / images with stretch, buster and bullseye as "base"
In your example Dockerfile you use the `dev` tag ``` FROM multiarch/crossbuild:dev ``` https://github.com/multiarch/crossbuild/blob/master/test/objective-c-hello-world/Dockerfile However the `dev` tag does not exist on Docker Hub: https://hub.docker.com/r/multiarch/crossbuild/tags?page=1&name=dev Looks like there are two...
Hello, I am curious about using crossbuild to manage some more fringe ports. Could crossbuild add support for compiling BSD targets? For example, FreeBSD.
What's wrong with this? I didn’t find this error on google? docker version: Client: Version: 20.10.7 API version: 1.41 Go version: go1.13.8 Git commit: 20.10.7-0ubuntu1~18.04.1 Built: Wed Aug 4 22:43:25...
Hi This project is very good and very helpful to me. If I want to compile JNI so, how should I write android-toolchain.cmake? Do I still need to copy the...
Hi, How to extend your docker image and to add other packages like this: ``` RUN apt-get update -y RUN apt-get install -y libx11-dev libgtk2.0-dev libgtkglext1-dev cmake ``` Thanks.