mirror of
https://github.com/bensuperpc/dockcross.git
synced 2025-06-17 16:39:25 +02:00
Compare commits
27 Commits
update_ope
...
update-lin
Author | SHA1 | Date | |
---|---|---|---|
47a1f23841 | |||
a99af2f072 | |||
9e151de91d | |||
59bea850b3 | |||
73aa306bba | |||
873b404a91 | |||
d5bdd85049 | |||
b17200a77c | |||
d486f2ceb2 | |||
a3a8ef3bb0 | |||
4a98c0ebf9 | |||
61d67a6c27 | |||
0b8587b72a | |||
e3b41cd784 | |||
430e8267cd | |||
bf729bf6ee | |||
0ae777c630 | |||
9af4919c4f | |||
d24c0a9b27 | |||
378403e8d9 | |||
a9dbd70bf7 | |||
8f4db25fc1 | |||
ad924d922b | |||
8bc72c75d3 | |||
6385842e94 | |||
b1608a889b | |||
80679fdfa2 |
733
.github/workflows/main.yml
vendored
733
.github/workflows/main.yml
vendored
@ -3,14 +3,14 @@ name: Dockcross CI
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
- "*"
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- "**.md"
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
- "*"
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
- "**.md"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
@ -25,8 +25,8 @@ jobs:
|
||||
run: make base.test
|
||||
- name: archive base
|
||||
run: |
|
||||
mkdir -p cache
|
||||
docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz
|
||||
mkdir -p cache
|
||||
docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz
|
||||
- name: save base
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
@ -36,8 +36,8 @@ jobs:
|
||||
- name: deploy
|
||||
if: github.ref == 'refs/heads/master'
|
||||
run: |
|
||||
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
|
||||
docker image push dockcross/base --all-tags
|
||||
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
|
||||
docker image push dockcross/base --all-tags
|
||||
|
||||
image:
|
||||
name: ${{ matrix.arch_name.image }}
|
||||
@ -47,64 +47,609 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
arch_name:
|
||||
# Android images
|
||||
- { image: "android-arm", arch: "arm" }
|
||||
- { image: "android-arm64", arch: "arm64" }
|
||||
- { image: "android-x86", arch: "x86" }
|
||||
- { image: "android-x86_64", arch: "x86_64" }
|
||||
# Linux arm64/armv8 images
|
||||
- { image: "linux-arm64", arch: "arm64" }
|
||||
- { image: "linux-arm64-musl", arch: "arm64" }
|
||||
- { image: "linux-arm64-full", arch: "arm64" }
|
||||
# Linux armv5 images
|
||||
- { image: "linux-armv5", arch: "armv5" }
|
||||
- { image: "linux-armv5-musl", arch: "armv5" }
|
||||
# Linux armv6 images
|
||||
- { image: "linux-armv6", arch: "armv6" }
|
||||
- { image: "linux-armv6-lts", arch: "armv6" }
|
||||
- { image: "linux-armv6-musl", arch: "armv6" }
|
||||
# Linux armv7 images
|
||||
- { image: "linux-armv7", arch: "armv7" }
|
||||
- { image: "linux-armv7a", arch: "armv7" }
|
||||
- { image: "linux-armv7l-musl", arch: "armv7" }
|
||||
# Linux x86 images
|
||||
- { image: "linux-x86", arch: "x86" }
|
||||
# Linux x86_64 images
|
||||
- { image: "linux-x64", arch: "x86_64" }
|
||||
- { image: "linux-x64-tinycc", arch: "x86_64" }
|
||||
- { image: "linux-x64-clang", arch: "x86_64" }
|
||||
- { image: "linux-x86_64-full", arch: "x86_64" }
|
||||
# Linux riscv images
|
||||
- { image: "linux-riscv32", arch: "riscv32" }
|
||||
- { image: "linux-riscv64", arch: "riscv64" }
|
||||
# Linux s390x images
|
||||
- { image: "linux-s390x", arch: "s390x" }
|
||||
# Linux mips images
|
||||
- { image: "linux-mips", arch: "mips" }
|
||||
# Linux ppc64le images
|
||||
- { image: "linux-ppc64le", arch: "ppc64le" }
|
||||
# Linux m68k images
|
||||
- { image: "linux-m68k-uclibc", arch: "m68k" }
|
||||
# Linux xtensa images
|
||||
- { image: "linux-xtensa-uclibc", arch: "xtensa" }
|
||||
# Windows x86_x64 images
|
||||
- { image: "windows-static-x64", arch: "x86_x64" }
|
||||
- { image: "windows-static-x64-posix", arch: "x86_x64" }
|
||||
- { image: "windows-static-x64", arch: "x86_x64" }
|
||||
- { image: "windows-shared-x64", arch: "x86_x64" }
|
||||
- { image: "windows-shared-x64-posix", arch: "x64" }
|
||||
# Windows x86 images
|
||||
- { image: "windows-static-x86", arch: "x86" }
|
||||
- { image: "windows-shared-x86", arch: "x86" }
|
||||
# Windows arm images
|
||||
- { image: "windows-armv7", arch: "armv7" }
|
||||
- { image: "windows-arm64", arch: "arm64" }
|
||||
# manylinux2014 images
|
||||
- { image: "manylinux2014-x86", arch: "x86" }
|
||||
- { image: "manylinux2014-x64", arch: "x86_64" }
|
||||
- { image: "manylinux2014-aarch64", arch: "arm64" }
|
||||
# web-wasm images
|
||||
- { image: "web-wasm", arch: "JS" }
|
||||
# Android images
|
||||
- {
|
||||
image: "android-arm",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv7 COMP=ndk",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "android-arm no-shared",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "android-arm64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv8 COMP=ndk",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "android-arm64 no-shared",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "android-x86",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-32 COMP=ndk",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "android-x86 no-shared",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "android-x86_64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64 COMP=ndk",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "android-x86_64 no-shared",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux arm64/armv8 images
|
||||
- {
|
||||
image: "linux-arm64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv8",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-aarch64",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-arm64-musl",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv8",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-aarch64",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-arm64-full",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv8",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-aarch64",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux armv5 images
|
||||
- {
|
||||
image: "linux-armv5",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-armv5-musl",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux armv6 images
|
||||
- {
|
||||
image: "linux-armv6",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-armv6-lts",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-armv6-musl",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux armv7 images
|
||||
- {
|
||||
image: "linux-armv7",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv7",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-armv7a",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv7-neon",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-armv7l-musl",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=armv7",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-armv4",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux x86 images
|
||||
- {
|
||||
image: "linux-x86",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-32-sse41-popcnt",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-x86",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux x86_64 images
|
||||
- {
|
||||
image: "linux-x64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-x86_64",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-x64-tinycc",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "linux-generic64 no-asm no-threads no-engine no-hw no-weak-ssl-ciphers no-dtls no-shared no-dso",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-x64-clang",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern COMP=clang",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "linux-x86_64-clang",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-x86_64-full",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-x86_64",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux riscv images
|
||||
- {
|
||||
image: "linux-riscv32",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-generic32",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "linux-riscv64",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-generic64",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux s390x images
|
||||
- {
|
||||
image: "linux-s390x",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux64-s390x",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux mips images
|
||||
- {
|
||||
image: "linux-mips",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-generic32",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux ppc64le images
|
||||
- {
|
||||
image: "linux-ppc64le",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=ppc-64",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-ppc64le",
|
||||
C: "yes",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux m68k images
|
||||
- {
|
||||
image: "linux-m68k-uclibc",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "linux-generic32 no-asm no-threads no-engine no-hw no-weak-ssl-ciphers no-dtls no-shared no-dso",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Linux xtensa images
|
||||
- {
|
||||
image: "linux-xtensa-uclibc",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-generic64 no-asm no-threads no-engine no-hw no-weak-ssl-ciphers no-dtls no-shared no-dso",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Windows x86_x64 images
|
||||
- {
|
||||
image: "windows-static-x64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern COMP=mingw",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "windows-static-x64-posix",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern COMP=mingw",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "windows-shared-x64",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "windows-shared-x64-posix",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Windows x86 images
|
||||
- {
|
||||
image: "windows-static-x86",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-32-sse41-popcnt COMP=mingw",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "windows-shared-x86",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# Windows arm images
|
||||
- {
|
||||
image: "windows-armv7",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "ARCH=armv7-neon COMP=clang",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "windows-arm64",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "ARCH=armv8 COMP=clang",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "mingw64 no-asm",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "yes",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# manylinux2014 images
|
||||
- {
|
||||
image: "manylinux2014-x86",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-32-sse41-popcnt",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-x86",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "manylinux2014-x64",
|
||||
stockfish: "yes",
|
||||
stockfish_arg: "ARCH=x86-64-modern",
|
||||
ninja: "yes",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-x86_64",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "yes",
|
||||
fmt_arg: ""
|
||||
}
|
||||
- {
|
||||
image: "manylinux2014-aarch64",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "yes",
|
||||
openssl_arg: "linux-aarch64",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
# web-wasm images
|
||||
- {
|
||||
image: "web-wasm",
|
||||
stockfish: "no",
|
||||
stockfish_arg: "",
|
||||
ninja: "no",
|
||||
ninja_arg: "",
|
||||
openssl: "no",
|
||||
openssl_arg: "linux-generic64 no-asm no-threads no-engine no-hw no-weak-ssl-ciphers no-dtls no-shared no-dso",
|
||||
C: "no",
|
||||
C_arg: "",
|
||||
C-Plus-Plus: "no",
|
||||
C-Plus-Plus_arg: "",
|
||||
fmt: "no",
|
||||
fmt_arg: ""
|
||||
}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/download-artifact@v2
|
||||
@ -117,8 +662,60 @@ jobs:
|
||||
run: make ${{ matrix.arch_name.image }}
|
||||
- name: basic test
|
||||
run: make ${{ matrix.arch_name.image }}.test
|
||||
- name: stockfish build test
|
||||
if: ${{ matrix.arch_name.stockfish == 'yes' }}
|
||||
run: |
|
||||
git clone --depth 1 --branch sf_14 https://github.com/official-stockfish/Stockfish.git
|
||||
cd Stockfish/src
|
||||
./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} net
|
||||
./../../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} build ${{ matrix.arch_name.stockfish_arg }} -j2
|
||||
cd ../..
|
||||
rm -rf Stockfish
|
||||
- name: ninja build test
|
||||
if: ${{ matrix.arch_name.ninja == 'yes' }}
|
||||
run: |
|
||||
git clone --depth 1 --branch v1.10.2 https://github.com/ninja-build/ninja.git
|
||||
cd ninja
|
||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.ninja_arg }}
|
||||
- name: openssl build test
|
||||
if: ${{ matrix.arch_name.openssl == 'yes' }}
|
||||
run: |
|
||||
git clone --depth 1 --branch OpenSSL_1_1_1k https://github.com/openssl/openssl.git
|
||||
cd openssl
|
||||
wget https://raw.githubusercontent.com/mavlink/MAVSDK/main/third_party/openssl/dockcross-android.patch
|
||||
patch -p 0 < dockcross-android.patch
|
||||
./../tools/dockcross-command.sh ${{ matrix.arch_name.image }} ./Configure ${{ matrix.arch_name.openssl_arg }}
|
||||
./../tools/dockcross-make-builder.sh ${{ matrix.arch_name.image }} -j2
|
||||
cd ..
|
||||
rm -rf openssl
|
||||
- name: C build test
|
||||
if: ${{ matrix.arch_name.C == 'yes' }}
|
||||
run: |
|
||||
git clone https://github.com/TheAlgorithms/C.git
|
||||
cd C
|
||||
git checkout cc241f58c253c533ac94e07151ef91a5ef7e5719
|
||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C_arg }}
|
||||
cd ..
|
||||
rm -rf C
|
||||
- name: C-Plus-Plus build test
|
||||
if: ${{ matrix.arch_name.C-Plus-Plus == 'yes' }}
|
||||
run: |
|
||||
git clone https://github.com/TheAlgorithms/C-Plus-Plus.git
|
||||
cd C-Plus-Plus
|
||||
git checkout c3b07aed2240e5364e1a49d091a00b61f520e653
|
||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.C-Plus-Plus_arg }}
|
||||
cd ..
|
||||
rm -rf C-Plus-Plus
|
||||
- name: fmt build test
|
||||
if: ${{ matrix.arch_name.fmt == 'yes' }}
|
||||
run: |
|
||||
git clone --depth 1 --branch 8.0.1 https://github.com/fmtlib/fmt.git
|
||||
cd fmt
|
||||
./../tools/dockcross-cmake-builder.sh ${{ matrix.arch_name.image }} ${{ matrix.arch_name.fmt_arg }} -DFMT_DOC=OFF
|
||||
cd ..
|
||||
rm -rf fmt
|
||||
- name: deploy
|
||||
if: github.ref == 'refs/heads/master'
|
||||
run: |
|
||||
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
|
||||
docker image push dockcross/${{ matrix.arch_name.image }} --all-tags
|
||||
docker login -u ${{ secrets.DOCKER_USER }} -p ${{ secrets.DOCKER_PASS }}
|
||||
docker image push dockcross/${{ matrix.arch_name.image }} --all-tags
|
||||
|
@ -9,6 +9,7 @@ RUN apt-get update && apt-get install -y \
|
||||
|
||||
ENV CROSS_TRIPLE=arm-linux-androideabi
|
||||
ENV CROSS_ROOT=/usr/${CROSS_TRIPLE}
|
||||
ENV ANDROID_NDK=${CROSS_ROOT}
|
||||
ENV AS=${CROSS_ROOT}/bin/llvm-as \
|
||||
AR=${CROSS_ROOT}/bin/llvm-ar \
|
||||
CC=${CROSS_ROOT}/bin/clang \
|
||||
|
@ -13,6 +13,7 @@ RUN apt-get update && apt-get install -y \
|
||||
|
||||
ENV CROSS_TRIPLE=aarch64-linux-android
|
||||
ENV CROSS_ROOT=/usr/${CROSS_TRIPLE}
|
||||
ENV ANDROID_NDK=${CROSS_ROOT}
|
||||
ENV AS=${CROSS_ROOT}/bin/llvm-as \
|
||||
AR=${CROSS_ROOT}/bin/llvm-ar \
|
||||
CC=${CROSS_ROOT}/bin/clang \
|
||||
|
@ -4,6 +4,7 @@ RUN apt-get update && apt-get install -y unzip
|
||||
|
||||
ENV CROSS_TRIPLE=i686-linux-android
|
||||
ENV CROSS_ROOT=/usr/${CROSS_TRIPLE}
|
||||
ENV ANDROID_NDK=${CROSS_ROOT}
|
||||
ENV AS=${CROSS_ROOT}/bin/llvm-as \
|
||||
AR=${CROSS_ROOT}/bin/llvm-ar \
|
||||
CC=${CROSS_ROOT}/bin/clang \
|
||||
|
@ -4,6 +4,7 @@ RUN apt-get update && apt-get install -y unzip
|
||||
|
||||
ENV CROSS_TRIPLE=x86_64-linux-android
|
||||
ENV CROSS_ROOT=/usr/${CROSS_TRIPLE}
|
||||
ENV ANDROID_NDK=${CROSS_ROOT}
|
||||
ENV AS=${CROSS_ROOT}/bin/llvm-as \
|
||||
AR=${CROSS_ROOT}/bin/llvm-ar \
|
||||
CC=${CROSS_ROOT}/bin/clang \
|
||||
|
@ -47,9 +47,9 @@ source $MY_DIR/utils.sh
|
||||
# copied from https://github.com/pypa/manylinux/tree/master/docker/build_scripts
|
||||
#
|
||||
|
||||
OPENSSL_ROOT=openssl-1.1.1k
|
||||
# Hash from https://www.openssl.org/source/openssl-1.1.1k.tar.gz.sha256
|
||||
OPENSSL_HASH=892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5
|
||||
OPENSSL_ROOT=openssl-1.1.1l
|
||||
# Hash from https://www.openssl.org/source/openssl-1.1.1l.tar.gz.sha256
|
||||
OPENSSL_HASH=0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1
|
||||
OPENSSL_DOWNLOAD_URL=http://www.openssl.org/source/
|
||||
|
||||
# a recent enough perl is needed to build openssl
|
||||
|
@ -588,7 +588,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -3,8 +3,8 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||
|
||||
# Crosstool-ng version
|
||||
# We use a git commit while waiting for 1.25 to release (1.24 is several years old)
|
||||
# crosstool-ng master 2021-08-18
|
||||
ENV CT_VERSION 358945ff2219e37d280532522d2c62309614d162
|
||||
# crosstool-ng master 2021-09-17
|
||||
ENV CT_VERSION 7daa182506baf30adb35752369cf352ac2383c3b
|
||||
|
||||
# This is for 32-bit ARMv6 Linux
|
||||
# Raspberry Pi is ARMv6+VFP2
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# crosstool-NG 1.24.0.409_d47b234 Configuration
|
||||
# crosstool-NG 1.24.0.446_7daa182 Configuration
|
||||
#
|
||||
CT_CONFIGURE_has_static_link=y
|
||||
CT_CONFIGURE_has_cxx11=y
|
||||
@ -20,14 +20,13 @@ CT_CONFIGURE_has_python_3_4_or_newer=y
|
||||
CT_CONFIGURE_has_bison_2_7_or_newer=y
|
||||
CT_CONFIGURE_has_python=y
|
||||
CT_CONFIGURE_has_dtc=y
|
||||
CT_CONFIGURE_has_cvs=y
|
||||
CT_CONFIGURE_has_git=y
|
||||
CT_CONFIGURE_has_md5sum=y
|
||||
CT_CONFIGURE_has_sha1sum=y
|
||||
CT_CONFIGURE_has_sha256sum=y
|
||||
CT_CONFIGURE_has_sha512sum=y
|
||||
CT_CONFIGURE_has_install_with_strip_program=y
|
||||
CT_VERSION="1.24.0.409_d47b234"
|
||||
CT_VERSION="1.24.0.446_7daa182"
|
||||
CT_VCHECK=""
|
||||
CT_CONFIG_VERSION_ENV="3"
|
||||
CT_CONFIG_VERSION_CURRENT="3"
|
||||
@ -270,10 +269,11 @@ CT_LINUX_PKG_NAME="linux"
|
||||
CT_LINUX_SRC_RELEASE=y
|
||||
# CT_LINUX_SRC_DEVEL is not set
|
||||
CT_LINUX_PATCH_ORDER="global"
|
||||
CT_LINUX_V_5_13=y
|
||||
# CT_LINUX_V_5_14 is not set
|
||||
# CT_LINUX_V_5_13 is not set
|
||||
# CT_LINUX_V_5_12 is not set
|
||||
# CT_LINUX_V_5_11 is not set
|
||||
# CT_LINUX_V_5_10 is not set
|
||||
CT_LINUX_V_5_10=y
|
||||
# CT_LINUX_V_5_9 is not set
|
||||
# CT_LINUX_V_5_8 is not set
|
||||
# CT_LINUX_V_5_7 is not set
|
||||
@ -302,7 +302,7 @@ CT_LINUX_V_5_13=y
|
||||
# CT_LINUX_V_3_10 is not set
|
||||
# CT_LINUX_V_3_4 is not set
|
||||
# CT_LINUX_V_3_2 is not set
|
||||
CT_LINUX_VERSION="5.13.1"
|
||||
CT_LINUX_VERSION="5.10.62"
|
||||
CT_LINUX_MIRRORS="$(CT_Mirrors kernel.org linux ${CT_LINUX_VERSION})"
|
||||
CT_LINUX_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_LINUX_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
@ -349,6 +349,7 @@ CT_BINUTILS_PKG_NAME="binutils"
|
||||
CT_BINUTILS_SRC_RELEASE=y
|
||||
# CT_BINUTILS_SRC_DEVEL is not set
|
||||
CT_BINUTILS_PATCH_ORDER="global"
|
||||
# CT_BINUTILS_V_2_37 is not set
|
||||
CT_BINUTILS_V_2_36=y
|
||||
# CT_BINUTILS_V_2_35 is not set
|
||||
# CT_BINUTILS_V_2_34 is not set
|
||||
@ -424,6 +425,7 @@ CT_GLIBC_PKG_NAME="glibc"
|
||||
CT_GLIBC_SRC_RELEASE=y
|
||||
# CT_GLIBC_SRC_DEVEL is not set
|
||||
CT_GLIBC_PATCH_ORDER="global"
|
||||
# CT_GLIBC_V_2_34 is not set
|
||||
# CT_GLIBC_V_2_33 is not set
|
||||
# CT_GLIBC_V_2_32 is not set
|
||||
# CT_GLIBC_V_2_31 is not set
|
||||
@ -539,26 +541,26 @@ CT_GCC_PKG_NAME="gcc"
|
||||
CT_GCC_SRC_RELEASE=y
|
||||
# CT_GCC_SRC_DEVEL is not set
|
||||
CT_GCC_PATCH_ORDER="global"
|
||||
CT_GCC_V_11=y
|
||||
# CT_GCC_V_11 is not set
|
||||
# CT_GCC_V_10 is not set
|
||||
# CT_GCC_V_9 is not set
|
||||
# CT_GCC_V_8 is not set
|
||||
CT_GCC_V_8=y
|
||||
# CT_GCC_V_7 is not set
|
||||
# CT_GCC_V_6 is not set
|
||||
# CT_GCC_V_5 is not set
|
||||
# CT_GCC_V_4_9 is not set
|
||||
CT_GCC_VERSION="11.2.0"
|
||||
CT_GCC_VERSION="8.5.0"
|
||||
CT_GCC_MIRRORS="$(CT_Mirrors GNU gcc/gcc-${CT_GCC_VERSION}) $(CT_Mirrors sourceware gcc/releases/gcc-${CT_GCC_VERSION})"
|
||||
CT_GCC_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_GCC_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
CT_GCC_ARCHIVE_FORMATS=".tar.xz .tar.gz"
|
||||
CT_GCC_SIGNATURE_FORMAT=""
|
||||
CT_GCC_later_than_11=y
|
||||
CT_GCC_11_or_later=y
|
||||
CT_GCC_later_than_10=y
|
||||
CT_GCC_10_or_later=y
|
||||
CT_GCC_later_than_9=y
|
||||
CT_GCC_9_or_later=y
|
||||
CT_GCC_11_or_older=y
|
||||
CT_GCC_older_than_11=y
|
||||
CT_GCC_10_or_older=y
|
||||
CT_GCC_older_than_10=y
|
||||
CT_GCC_9_or_older=y
|
||||
CT_GCC_older_than_9=y
|
||||
CT_GCC_later_than_8=y
|
||||
CT_GCC_8_or_later=y
|
||||
CT_GCC_later_than_7=y
|
||||
@ -602,7 +604,6 @@ CT_CC_GCC_LIBSANITIZER=y
|
||||
# Misc. obscure options.
|
||||
#
|
||||
CT_CC_CXA_ATEXIT=y
|
||||
CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
CT_CC_GCC_DISABLE_PCH=y
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
@ -639,6 +640,7 @@ CT_GDB_PKG_NAME="gdb"
|
||||
CT_GDB_SRC_RELEASE=y
|
||||
# CT_GDB_SRC_DEVEL is not set
|
||||
CT_GDB_PATCH_ORDER="global"
|
||||
# CT_GDB_V_10_2 is not set
|
||||
CT_GDB_V_9_2=y
|
||||
# CT_GDB_V_8_3 is not set
|
||||
# CT_GDB_V_8_2 is not set
|
||||
@ -652,6 +654,8 @@ CT_GDB_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_GDB_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
CT_GDB_ARCHIVE_FORMATS=".tar.xz .tar.gz"
|
||||
CT_GDB_SIGNATURE_FORMAT=""
|
||||
CT_GDB_10_2_or_older=y
|
||||
CT_GDB_older_than_10_2=y
|
||||
CT_GDB_later_than_8_3=y
|
||||
CT_GDB_8_3_or_later=y
|
||||
CT_GDB_later_than_8_0=y
|
||||
|
@ -603,7 +603,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -603,7 +603,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -3,8 +3,8 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||
|
||||
# Crosstool-ng version
|
||||
# We use a git commit while waiting for 1.25 to release (1.24 is several years old)
|
||||
# crosstool-ng master 2021-08-18
|
||||
ENV CT_VERSION 358945ff2219e37d280532522d2c62309614d162
|
||||
# crosstool-ng master 2021-09-20
|
||||
ENV CT_VERSION 5f5a22f7a7307790ec571d0c5acf8790416964e6
|
||||
|
||||
ARG QEMU_VERSION=6.0.0
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# crosstool-NG 1.24.0.409_d47b234 Configuration
|
||||
# crosstool-NG 1.24.0.450_5f5a22f Configuration
|
||||
#
|
||||
CT_CONFIGURE_has_static_link=y
|
||||
CT_CONFIGURE_has_cxx11=y
|
||||
@ -20,14 +20,13 @@ CT_CONFIGURE_has_python_3_4_or_newer=y
|
||||
CT_CONFIGURE_has_bison_2_7_or_newer=y
|
||||
CT_CONFIGURE_has_python=y
|
||||
CT_CONFIGURE_has_dtc=y
|
||||
CT_CONFIGURE_has_cvs=y
|
||||
CT_CONFIGURE_has_git=y
|
||||
CT_CONFIGURE_has_md5sum=y
|
||||
CT_CONFIGURE_has_sha1sum=y
|
||||
CT_CONFIGURE_has_sha256sum=y
|
||||
CT_CONFIGURE_has_sha512sum=y
|
||||
CT_CONFIGURE_has_install_with_strip_program=y
|
||||
CT_VERSION="1.24.0.409_d47b234"
|
||||
CT_VERSION="1.24.0.450_5f5a22f"
|
||||
CT_VCHECK=""
|
||||
CT_CONFIG_VERSION_ENV="3"
|
||||
CT_CONFIG_VERSION_CURRENT="3"
|
||||
@ -242,7 +241,8 @@ CT_LINUX_PKG_NAME="linux"
|
||||
CT_LINUX_SRC_RELEASE=y
|
||||
# CT_LINUX_SRC_DEVEL is not set
|
||||
CT_LINUX_PATCH_ORDER="global"
|
||||
CT_LINUX_V_5_13=y
|
||||
CT_LINUX_V_5_14=y
|
||||
# CT_LINUX_V_5_13 is not set
|
||||
# CT_LINUX_V_5_12 is not set
|
||||
# CT_LINUX_V_5_11 is not set
|
||||
# CT_LINUX_V_5_10 is not set
|
||||
@ -275,7 +275,7 @@ CT_LINUX_V_5_13=y
|
||||
# CT_LINUX_V_3_4 is not set
|
||||
# CT_LINUX_V_3_2 is not set
|
||||
# CT_LINUX_V_2_6_32 is not set
|
||||
CT_LINUX_VERSION="5.13.1"
|
||||
CT_LINUX_VERSION="5.14.1"
|
||||
CT_LINUX_MIRRORS="$(CT_Mirrors kernel.org linux ${CT_LINUX_VERSION})"
|
||||
CT_LINUX_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_LINUX_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
@ -321,7 +321,8 @@ CT_BINUTILS_PKG_NAME="binutils"
|
||||
CT_BINUTILS_SRC_RELEASE=y
|
||||
# CT_BINUTILS_SRC_DEVEL is not set
|
||||
CT_BINUTILS_PATCH_ORDER="global"
|
||||
CT_BINUTILS_V_2_36=y
|
||||
CT_BINUTILS_V_2_37=y
|
||||
# CT_BINUTILS_V_2_36 is not set
|
||||
# CT_BINUTILS_V_2_35 is not set
|
||||
# CT_BINUTILS_V_2_34 is not set
|
||||
# CT_BINUTILS_V_2_33 is not set
|
||||
@ -332,7 +333,7 @@ CT_BINUTILS_V_2_36=y
|
||||
# CT_BINUTILS_V_2_28 is not set
|
||||
# CT_BINUTILS_V_2_27 is not set
|
||||
# CT_BINUTILS_V_2_26 is not set
|
||||
CT_BINUTILS_VERSION="2.36.1"
|
||||
CT_BINUTILS_VERSION="2.37"
|
||||
CT_BINUTILS_MIRRORS="$(CT_Mirrors GNU binutils) $(CT_Mirrors sourceware binutils/releases)"
|
||||
CT_BINUTILS_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_BINUTILS_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
@ -407,8 +408,8 @@ CT_UCLIBC_NG_PKG_NAME="uClibc-ng"
|
||||
CT_UCLIBC_NG_SRC_RELEASE=y
|
||||
# CT_UCLIBC_NG_SRC_DEVEL is not set
|
||||
CT_UCLIBC_NG_PATCH_ORDER="global"
|
||||
# CT_UCLIBC_NG_V_1_0_38 is not set
|
||||
CT_UCLIBC_NG_V_1_0_36=y
|
||||
CT_UCLIBC_NG_V_1_0_38=y
|
||||
# CT_UCLIBC_NG_V_1_0_36 is not set
|
||||
# CT_UCLIBC_NG_V_1_0_33 is not set
|
||||
# CT_UCLIBC_NG_V_1_0_32 is not set
|
||||
# CT_UCLIBC_NG_V_1_0_31 is not set
|
||||
@ -418,7 +419,7 @@ CT_UCLIBC_NG_V_1_0_36=y
|
||||
# CT_UCLIBC_NG_V_1_0_27 is not set
|
||||
# CT_UCLIBC_NG_V_1_0_26 is not set
|
||||
# CT_UCLIBC_NG_V_1_0_25 is not set
|
||||
CT_UCLIBC_NG_VERSION="1.0.36"
|
||||
CT_UCLIBC_NG_VERSION="1.0.38"
|
||||
CT_UCLIBC_NG_MIRRORS="http://downloads.uclibc-ng.org/releases/${CT_UCLIBC_NG_VERSION}"
|
||||
CT_UCLIBC_NG_ARCHIVE_FILENAME="@{pkg_name}-@{version}"
|
||||
CT_UCLIBC_NG_ARCHIVE_DIRNAME="@{pkg_name}-@{version}"
|
||||
@ -451,7 +452,7 @@ CT_LIBC_UCLIBC_CONFIG_FILE=""
|
||||
CT_LIBC_UCLIBC_LNXTHRD=""
|
||||
# CT_LIBC_UCLIBC_LOCALES is not set
|
||||
# CT_LIBC_UCLIBC_LIBICONV is not set
|
||||
# CT_LIBC_UCLIBC_IPV6 is not set
|
||||
CT_LIBC_UCLIBC_IPV6=y
|
||||
CT_LIBC_UCLIBC_WCHAR=y
|
||||
# CT_LIBC_UCLIBC_FENV is not set
|
||||
CT_LIBC_UCLIBC_HAS_SSP=y
|
||||
@ -544,6 +545,7 @@ CT_CC_GCC_CONFIG_TLS=m
|
||||
#
|
||||
CT_CC_GCC_USE_GRAPHITE=y
|
||||
CT_CC_GCC_USE_LTO=y
|
||||
CT_CC_GCC_LTO_ZSTD=m
|
||||
|
||||
#
|
||||
# Settings for libraries running on target
|
||||
@ -809,6 +811,7 @@ CT_GMP_NEEDED=y
|
||||
CT_MPFR_NEEDED=y
|
||||
CT_ISL_NEEDED=y
|
||||
CT_MPC_NEEDED=y
|
||||
CT_EXPAT_NEEDED=y
|
||||
CT_NCURSES_NEEDED=y
|
||||
CT_ZLIB_NEEDED=y
|
||||
CT_LIBICONV=y
|
||||
@ -817,6 +820,7 @@ CT_GMP=y
|
||||
CT_MPFR=y
|
||||
CT_ISL=y
|
||||
CT_MPC=y
|
||||
CT_EXPAT=y
|
||||
CT_NCURSES=y
|
||||
CT_ZLIB=y
|
||||
# end of Companion libraries
|
||||
|
@ -582,7 +582,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -586,7 +586,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -606,7 +606,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -606,7 +606,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -568,7 +568,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -549,7 +549,7 @@ CT_CC_GCC_TM_CLONE_REGISTRY=m
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -398,7 +398,7 @@ CT_CC_CXA_ATEXIT=y
|
||||
# CT_CC_GCC_DISABLE_PCH is not set
|
||||
CT_CC_GCC_SJLJ_EXCEPTIONS=m
|
||||
CT_CC_GCC_LDBL_128=m
|
||||
# CT_CC_GCC_BUILD_ID is not set
|
||||
CT_CC_GCC_BUILD_ID=y
|
||||
CT_CC_GCC_LNK_HASH_STYLE_DEFAULT=y
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_SYSV is not set
|
||||
# CT_CC_GCC_LNK_HASH_STYLE_GNU is not set
|
||||
|
@ -5,7 +5,7 @@ if (( $# >= 1 )); then
|
||||
build_file=build-${image%:*}
|
||||
shift 1
|
||||
|
||||
cmake_arg=$*
|
||||
cmake_arg=$@
|
||||
echo "cmake arg: $cmake_arg"
|
||||
|
||||
#echo "Pulling dockcross/$image"
|
||||
@ -16,7 +16,7 @@ if (( $# >= 1 )); then
|
||||
chmod +x ./dockcross-"$image"
|
||||
|
||||
echo "Build $build_file"
|
||||
./dockcross-"$image" cmake -B "$build_file" -S . -G Ninja "$cmake_arg"
|
||||
./dockcross-"$image" cmake -B "$build_file" -S . -G Ninja $cmake_arg
|
||||
./dockcross-"$image" ninja -C "$build_file"
|
||||
else
|
||||
echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <cmake arg.>"
|
||||
|
22
tools/dockcross-command.sh
Executable file
22
tools/dockcross-command.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if (( $# >= 2 )); then
|
||||
image=$1
|
||||
shift 1
|
||||
|
||||
command=$@
|
||||
echo "command: $command"
|
||||
|
||||
#echo "Pulling dockcross/$image"
|
||||
#docker pull dockcross/"$image"
|
||||
|
||||
echo "Make script dockcross-$image"
|
||||
docker run --rm dockcross/"$image" > ./dockcross-"$image"
|
||||
chmod +x ./dockcross-"$image"
|
||||
|
||||
echo "Run command in dockcross-$image"
|
||||
./dockcross-"$image" $command
|
||||
else
|
||||
echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <command>"
|
||||
exit 1
|
||||
fi
|
@ -5,7 +5,7 @@ if (( $# >= 1 )); then
|
||||
build_file=build-${image%:*}
|
||||
shift 1
|
||||
|
||||
make_arg=$*
|
||||
make_arg=$@
|
||||
echo "make arg: $make_arg"
|
||||
|
||||
#echo "Pulling dockcross/$image"
|
||||
@ -16,7 +16,7 @@ if (( $# >= 1 )); then
|
||||
chmod +x ./dockcross-"$image"
|
||||
|
||||
echo "Build $build_file"
|
||||
./dockcross-"$image" bash -c 'make CXX=${CXX} CC=${CC} AR=${AR} AS=${AS} LD=${LD} CPP=${CPP} FC=${FC} '"$make_arg"
|
||||
./dockcross-"$image" bash -c 'make CXX=${CXX} CC=${CC} AR=${AR} AS=${AS} LD=${LD} CPP=${CPP} FC=${FC}' $make_arg
|
||||
else
|
||||
echo "Usage: ${0##*/} <docker imag (ex: linux-x64/linux-x64-clang/linux-arm64/windows-shared-x64/windows-static-x64...)> <make arg.>"
|
||||
exit 1
|
||||
|
Reference in New Issue
Block a user