Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide linux/arm64 Docker images #79

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0dbd851
Provide linux/arm64 images for m1s
ianks Nov 13, 2022
223f50d
Merge branch 'master' into linux/arm64
ianks Dec 16, 2022
e4672bd
Use matrix
ianks Dec 16, 2022
0b130a7
Translate docker platform to manylinux image slug
ianks Dec 16, 2022
8fc03f4
Merge branch 'master' into linux/arm64
ianks Dec 16, 2022
a3e2954
s/DOCKER_PLATFORM/DOCKER_BUILD_PLATFORM
ianks Dec 16, 2022
d4857ff
Remove all refs to specific dpkg archs
ianks Dec 17, 2022
7bf3aa5
Prepare mingw32-ucrt before build
ianks Dec 17, 2022
079d0cb
Sorry 32bit, later
ianks Dec 17, 2022
67b3e12
More dkpg stuff
ianks Dec 17, 2022
a51486e
Fix typo
ianks Dec 17, 2022
0403fe6
Erbify
ianks Dec 17, 2022
19be52a
So many aliases
ianks Dec 17, 2022
b8c3992
Use x86-64 mingw deb pkg always
ianks Dec 17, 2022
8a26e13
[linux/arm64] Add tests to the matrix for docker platform
ianks Dec 17, 2022
1c0461b
[linux/arm64] [linux/amd64] Get the slash out of the extra tag
ianks Dec 17, 2022
d56306f
[linux/arm64] [linux/amd64] Use correct ref to commit message
ianks Dec 17, 2022
d572b34
[linux/arm64] [linux/amd64] Use correct ref to commit message
ianks Dec 17, 2022
581c626
[linux/arm64] [linux/amd64] Use correct ref to commit message
ianks Dec 17, 2022
63e23dd
[linux/arm64] Try fix upload container via commit
ianks Dec 17, 2022
191fdcb
[linux/arm64] Use own platform manifests
ianks Dec 17, 2022
2917d31
Merge branch 'master' into linux/arm64
ianks Dec 17, 2022
d2f3e60
[linux/arm64] Adjust mk_osxcross to reference generic archdir
ianks Dec 17, 2022
2558eb8
[linux/arm64] Host vs foreign arch
ianks Dec 17, 2022
034db51
[linux/arm64] Use debian multiarch, dunno how to do manylinux....
ianks Dec 17, 2022
fbe2f20
[linux/arm64] Cleanup multiarch stuff
ianks Dec 17, 2022
b489f4f
[linux/arm64] Cleanup multiarch stuff
ianks Dec 17, 2022
4cced66
[linux/arm64] Another guard
ianks Dec 17, 2022
ccfaa41
[linux/arm64] Install both types of pkgs
ianks Dec 17, 2022
41cae4e
[linux/arm64] Another guard
ianks Dec 17, 2022
7608813
[linux/arm64] Manipulate sources
ianks Dec 17, 2022
dfbedba
[linux/arm64] Derive lsb_relese
ianks Dec 17, 2022
44a653a
[linux/arm64] Only install multiarch when host is arm64
ianks Dec 17, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/mk_osxcross.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -x
curl -L -o MacOSX11.1.sdk.tar.xz https://github.com/larskanis/MacOSX-SDKs/releases/download/11.1/MacOSX11.1.sdk.tar.xz
tar -xf MacOSX11.1.sdk.tar.xz -C .
cp -rf /usr/lib/llvm-10/include/c++ MacOSX11.1.sdk/usr/include/c++
cp -rf /usr/include/x86_64-linux-gnu/c++/9/bits/ MacOSX11.1.sdk/usr/include/c++/v1/bits
cp -rf /usr/include"$(uname -m)"-linux-gnu/c++/9/bits/ MacOSX11.1.sdk/usr/include/c++/v1/bits
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should be /usr/include/$(uname -m)-linux-gnu ... (note the "/")

tar -cJf MacOSX11.1.sdk.tar.xz MacOSX11.1.sdk

set +x
Expand Down