mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 16:24:27 +01:00
Tidy up and consolidate both README.rst/README.md into one. Introduce linux-armv5.
This commit is contained in:
parent
d774409f13
commit
7e6150cf29
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
dockcross
|
@ -17,12 +17,16 @@ RUN apt-get update && apt-get -y install \
|
||||
make \
|
||||
ncurses-dev \
|
||||
pkg-config \
|
||||
libtool \
|
||||
python \
|
||||
rsync \
|
||||
sed \
|
||||
bison \
|
||||
flex \
|
||||
tar \
|
||||
vim \
|
||||
wget \
|
||||
runit \
|
||||
xz-utils && \
|
||||
apt-get -y clean
|
||||
|
||||
|
7
Makefile
7
Makefile
@ -16,6 +16,9 @@ linux-x86:
|
||||
linux-x64:
|
||||
$(DOCKER) build -t $(IMAGE)-linux-x64 linux-x64
|
||||
|
||||
linux-armv5: base linux-armv5/Dockerfile linux-armv5/Toolchain.cmake
|
||||
$(DOCKER) build -t $(IMAGE)-linux-armv5 linux-armv5
|
||||
|
||||
linux-armv6: base linux-armv6/Dockerfile linux-armv6/Toolchain.cmake
|
||||
$(DOCKER) build -t $(IMAGE)-linux-armv6 linux-armv6
|
||||
|
||||
@ -34,6 +37,6 @@ windows-x64: base windows-x64/Dockerfile windows-x64/settings.mk
|
||||
base: Dockerfile
|
||||
$(DOCKER) build -t $(IMAGE)-base .
|
||||
|
||||
all: base android-arm darwin-x64 linux-x86 linux-x64 linux-armv6 linux-armv7 windows-x86 windows-x64
|
||||
all: base android-arm darwin-x64 linux-x86 linux-x64 linux-armv5 linux-armv6 linux-armv7 windows-x86 windows-x64
|
||||
|
||||
.PHONY: all base android-arm darwin-x64 linux-x86 linux-x64 linux-armv6 linux-armv7 windows-x86 windows-x64
|
||||
.PHONY: all base android-arm darwin-x64 linux-x86 linux-x64 linux-armv5 linux-armv6 linux-armv7 windows-x86 windows-x64
|
||||
|
90
README.rst
90
README.rst
@ -1,7 +1,91 @@
|
||||
cross-compilers
|
||||
===============
|
||||
Dockerfiles for cross compiling environments
|
||||
--------------------------------------------
|
||||
---------------
|
||||
|
||||
Dockerfiles for cross compiling in a Docker container.
|
||||
|
||||
Features
|
||||
========
|
||||
|
||||
* different toolchains for cross compiling
|
||||
* commands in the container are run as the calling user, so that any created files have the expected ownership (ie. not root)
|
||||
* make variables (`CC`, `LD` etc) are set to point to the appropriate tools in the container
|
||||
* cmake and ninja are precompiled available with a toolchain file for cmake
|
||||
* current directory is mounted as the container's workdir, `/build`
|
||||
* works with boot2docker on OSX and Docker for Mac beta (1.11.1-beta12)
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
This image is not intended to be run manually. Instead, there is a helper script which comes bundled with the image.
|
||||
|
||||
To install the helper script, run the image with no arguments, and redirect the output to a file::
|
||||
|
||||
docker run CROSS_COMPILER_IMAGE_NAME > dockcross
|
||||
chmod +x dockcross
|
||||
mv dockcross ~/bin/
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
For the impatient, here's a one-liner to compile a hello world for armv7::
|
||||
|
||||
docker run thewtex/cross-compiler-linux-armv7 > dockcross && chmod +x dockcross && ./dockcross gcc test/C/hello.c -o hello_arm
|
||||
|
||||
Note how invoking any toolchain command (make, gcc, etc...) is just a matter of prepending **dockcross** in the commandline:
|
||||
|
||||
`dockcross [command] [args...]`
|
||||
|
||||
Dockcross will thus execute the given command-line inside the container, along with all arguments passed after the command.
|
||||
|
||||
Alternatively, if the command matches one of the dockcross built-in commands (see below), that will be executed locally.
|
||||
|
||||
|
||||
Built-in commands
|
||||
=================
|
||||
|
||||
- `dockcross -- [command] [args...]`: Forces a command to run inside the container (in case of a name clash with a built-in command), use `--` before the command.
|
||||
- `dockcross update-image`: Fetch the latest version of the docker image.
|
||||
- `dockcross update-script`: Update the installed dockcross script with the one bundled in the image.
|
||||
- `dockcross update`: Update both the docker image, and the dockcross script.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
The following command-line options and environment variables are used. In all cases, the command-line option overrides the environment variable.
|
||||
|
||||
### DOCKCROSS_CONFIG / --config <path-to-config-file>
|
||||
|
||||
This file is sourced if it exists.
|
||||
|
||||
Default: `~/.dockcross`
|
||||
|
||||
### DOCKCROSS_IMAGE / --image <docker-image-name>
|
||||
|
||||
The docker image to run.
|
||||
|
||||
Default: thewtex/cross-compiler-linux-armv7
|
||||
|
||||
### DOCKCROSS_ARGS / --args <docker-run-args>
|
||||
|
||||
Extra arguments to pass to the `docker run` command.
|
||||
|
||||
Examples
|
||||
========
|
||||
|
||||
1. **dockcross make**: Build the Makefile in the current directory.
|
||||
2. **dockcross cmake -Bbuild -H. -GNinja***: Run CMake with a build directory "build" for the CMakeLists.txt in the current directory and generate `ninja` files.
|
||||
3. **dockcross ninja -Cbuild**: Run ninja in the generated build directory.
|
||||
4. **dockcross bash -c 'find . -name \*.o | sort > objects.txt'**
|
||||
|
||||
Note that commands are executed verbatim. If you require any shell processing for environment variable expansion or redirection, please use `bash -c 'command args...'`.
|
||||
|
||||
---
|
||||
|
||||
Credits go to `sdt/docker-raspberry-pi-cross-compiler <https://github.com/sdt/docker-raspberry-pi-cross-compiler>`_, who invented the base of this **dockcross** script.
|
||||
|
||||
|
||||
CI status
|
||||
---------
|
||||
|
||||
.. image:: https://circleci.com/gh/thewtex/cross-compilers/tree/master.svg?style=svg
|
||||
:target: https://circleci.com/gh/thewtex/cross-compilers/tree/master
|
||||
|
@ -40,6 +40,7 @@ test:
|
||||
- make windows-x86:
|
||||
timeout: 3000
|
||||
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-windows-x86 python /usr/src/test/run.py --emulator /usr/bin/wine --exe-suffix ".exe"
|
||||
- docker run thewtex/cross-compiler-linux-armv7 > dockcross && chmod +x dockcross && ./dockcross gcc test/C/hello.c -o hello_arm
|
||||
|
||||
deployment:
|
||||
hub:
|
||||
|
@ -180,7 +180,7 @@ docker run -i -t --rm \
|
||||
#
|
||||
# To install the dockcross helper, run the following commands:
|
||||
#
|
||||
# docker run sdt4docker/raspberry-pi-cross-compiler > dockcross
|
||||
# docker run thewtex/raspberry-pi-cross-compiler > dockcross
|
||||
# chmod +x dockcross
|
||||
#
|
||||
# You may then wish to move dockcross to somewhere in your path.
|
||||
|
25
linux-armv5/Dockerfile
Normal file
25
linux-armv5/Dockerfile
Normal file
@ -0,0 +1,25 @@
|
||||
FROM thewtex/cross-compiler-base
|
||||
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||
|
||||
# This is for ARMv5 "legacy" devices which do not support hard float VFP instructions.
|
||||
# https://wiki.debian.org/CrossToolchains
|
||||
RUN dpkg --add-architecture armel && \
|
||||
apt-get update && \
|
||||
apt-get install -y crossbuild-essential-armel
|
||||
|
||||
# The cross-compiling emulator
|
||||
RUN apt-get update && apt-get install -y \
|
||||
qemu-user \
|
||||
qemu-user-static
|
||||
|
||||
ENV CROSS_TRIPLE arm-linux-gnueabi
|
||||
ENV CROSS_ROOT /usr/bin
|
||||
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
||||
AR=/usr/bin/${CROSS_TRIPLE}-ar \
|
||||
CC=/usr/bin/${CROSS_TRIPLE}-gcc \
|
||||
CPP=/usr/bin/${CROSS_TRIPLE}-cpp \
|
||||
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
|
||||
LD=/usr/bin/${CROSS_TRIPLE}-ld
|
||||
|
||||
ENV QEMU_LD_PREFIX ${CROSS_ROOT}/libc
|
||||
ENV QEMU_SET_ENV "LD_LIBRARY_PATH=${CROSS_ROOT}/lib:${CROSS_ROOT}/libc/lib/${CROSS_TRIPLE}/"
|
16
linux-armv5/Toolchain.cmake
Normal file
16
linux-armv5/Toolchain.cmake
Normal file
@ -0,0 +1,16 @@
|
||||
set(CMAKE_SYSTEM_NAME Linux)
|
||||
set(CMAKE_SYSTEM_VERSION 1)
|
||||
set(CMAKE_SYSTEM_PROCESSOR arm)
|
||||
|
||||
set(cross_triple "arm-linux-gnueabi")
|
||||
|
||||
set(CMAKE_C_COMPILER /usr/bin/${cross_triple}-gcc)
|
||||
set(CMAKE_CXX_COMPILER /usr/bin/${cross_triple}-g++)
|
||||
set(CMAKE_Fortran_COMPILER /usr/bin/${cross_triple}-gfortran)
|
||||
|
||||
set(CMAKE_FIND_ROOT_PATH /usr/${cross_triple} /usr/${cross_triple}/libc/usr)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
||||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
||||
|
||||
set(CMAKE_CROSSCOMPILING_EMULATOR /usr/bin/qemu-arm)
|
@ -27,10 +27,14 @@ ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
||||
# of performance.
|
||||
# See: https://wiki.debian.org/RaspberryPi
|
||||
# We are also using the 4.7 version of the toolchain, so that glibc=2.13
|
||||
ENV RASPBERRYPI_TOOLS_COMMIT 9c3d7b6ac692498dd36fec2872e0b55f910baac1
|
||||
RUN curl -L https://github.com/raspberrypi/tools/archive/${RASPBERRYPI_TOOLS_COMMIT}.tar.gz | tar xvz --wildcards --no-anchored "*gcc-linaro-${CROSS_TRIPLE}-raspbian*" && \
|
||||
rsync -av /usr/src/tools-${RASPBERRYPI_TOOLS_COMMIT}/arm-bcm2708/gcc-linaro-${CROSS_TRIPLE}-raspbian/ /usr/ && \
|
||||
rm -rf /usr/src/tools-${RASPBERRYPI_TOOLS_COMMIT}
|
||||
|
||||
# Instead of cloning the whole repo (>1GB at the of writing this), we want to do a so-called "sparse checkout" with "shallow cloning":
|
||||
# https://stackoverflow.com/questions/600079/is-there-any-way-to-clone-a-git-repositorys-sub-directory-only/13738951#13738951
|
||||
|
||||
RUN mkdir rpi_tools && cd rpi_tools && git init && git remote add -f origin https://github.com/raspberrypi/tools && \
|
||||
git config core.sparseCheckout true && echo "arm-bcm2708/gcc-linaro-${CROSS_TRIPLE}-raspbian" >> .git/info/sparse-checkout && \
|
||||
git pull --depth=1 origin master && rsync -av arm-bcm2708/gcc-linaro-${CROSS_TRIPLE}-raspbian/ /usr/ && rm -rf ../rpi_tools
|
||||
|
||||
# Allow dynamically linked executables to run with qemu-arm
|
||||
ENV QEMU_LD_PREFIX ${CROSS_ROOT}/libc
|
||||
ENV QEMU_SET_ENV "LD_LIBRARY_PATH=${CROSS_ROOT}/lib:${CROSS_ROOT}/libc/lib/${CROSS_TRIPLE}/"
|
||||
|
Loading…
Reference in New Issue
Block a user