ros-tooling / cross_compile

A tool to build ROS and ROS2 workspaces for various targets
Apache License 2.0
188 stars 60 forks source link

Use docker build argument to specify architecture #10

Closed lmayencourt closed 5 years ago

lmayencourt commented 5 years ago

Use an argument to specify the architecture of the target-file system. This can be specified with the --build-arg argument on the docker build command: for armhf: docker build --build-arg ARM_ARCH=arm32v7 ... for aarch64: docker build --build-arg ARM_ARCH=arm64v8 ...