mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-18 17:09:25 +02:00
Compare commits
9 Commits
update_win
...
add_tbb
Author | SHA1 | Date | |
---|---|---|---|
77e7761286 | |||
9f3cbd5a17 | |||
e607d1252b | |||
b50710ea8f | |||
e1a1191559 | |||
ed5ecc293e | |||
6d00aa95f5 | |||
c06be541ac | |||
0f9beb211c |
22
README.md
22
README.md
@ -117,6 +117,17 @@ The dockcross script will execute the given command-line inside the container, a
|
||||
| dockcross/windows-armv7 | ARMv7 | Clang | Windows |
|
||||
| dockcross/windows-arm64 | ARMv8 | Clang | Windows |
|
||||
|
||||
The list of docker images that are **no longer maintained**.
|
||||
|
||||
| Image name | Target arch | Compiler | Target OS |
|
||||
|:-------:|:--------:|:------:|:-----:|
|
||||
| dockcross/manylinux1-x86 | x86 | GCC | manylinux |
|
||||
| dockcross/manylinux1-x64 | x86_64 | GCC| manylinux |
|
||||
| dockcross/manylinux2010-x86 | x86 | GCC | manylinux |
|
||||
| dockcross/manylinux2010-x64 | x86_64 | GCC | manylinux |
|
||||
| dockcross/linux-mipsel | mipsel | GCC 4.9 | Debian 8 |
|
||||
|
||||
|
||||
## Cross compilers
|
||||
|
||||
### dockcross/base
|
||||
@ -381,17 +392,6 @@ ARMv7 32-bit Windows cross-compiler based on [LLVM/MinGW-w64](https://github.com
|
||||
|
||||
ARMv8 64-bit Windows cross-compiler based on [llvm-mingw](https://github.com/mstorsjo/llvm-mingw)
|
||||
|
||||
## Summary legacy cross compilers
|
||||
|
||||
The list of docker images that are no longer supported or broken
|
||||
|
||||
| Image name | Target arch | Compiler | Target OS |
|
||||
|:-------:|:--------:|:------:|:-----:|
|
||||
| dockcross/manylinux1-x86 | x86 | GCC | manylinux |
|
||||
| dockcross/manylinux1-x64 | x86_64 | GCC| manylinux |
|
||||
| dockcross/manylinux2010-x86 | x86 | GCC | manylinux |
|
||||
| dockcross/manylinux2010-x64 | x86_64 | GCC | manylinux |
|
||||
|
||||
## Articles
|
||||
|
||||
- [dockcross: C++ Write Once, Run
|
||||
|
@ -7,6 +7,11 @@ LABEL maintainer="Matt McCormick matt.mccormick@kitware.com"
|
||||
ARG REPO_URL=https://repo.or.cz/tinycc.git
|
||||
ENV REPO_URL=${REPO_URL}
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get -y install \
|
||||
libtbb-dev \
|
||||
&& apt-get clean --yes
|
||||
|
||||
# Disable options: --with-libgcc --disable-static
|
||||
RUN git clone --recurse-submodules --remote-submodules ${REPO_URL} \
|
||||
&& cd tinycc \
|
||||
|
@ -6,6 +6,7 @@ RUN apt-get update && \
|
||||
apt-get -y install \
|
||||
libelf-dev \
|
||||
libssl-dev \
|
||||
libtbb-dev \
|
||||
&& apt-get clean --yes
|
||||
|
||||
ENV CROSS_TRIPLE x86_64-linux-gnu
|
||||
|
@ -7,6 +7,7 @@ RUN dpkg --add-architecture i386 && \
|
||||
gcc-multilib \
|
||||
g++-multilib \
|
||||
libc6:i386 \
|
||||
libtbb-dev:i386 \
|
||||
libstdc++6:i386 \
|
||||
libbz2-dev:i386 \
|
||||
libexpat1-dev:i386 \
|
||||
|
Reference in New Issue
Block a user