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

Linuxmusl arm64 #73

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
use aarch64-unknown-linux-musl
gpetrov committed Jan 14, 2021
commit 3b288c361c0d8b1056a5cf8f2ef28f52f4652194
4 changes: 2 additions & 2 deletions build/lin.sh
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ CURL="curl --silent --location --retry 3 --retry-max-time 30"
# Dependency version numbers
VERSION_ZLIB=1.2.11
VERSION_FFI=3.3
VERSION_GLIB=2.67.1
VERSION_GLIB=2.67.2
VERSION_XML2=2.9.10
VERSION_GSF=1.14.47
VERSION_EXIF=0.6.22
@@ -93,7 +93,7 @@ VERSION_GDKPIXBUF=2.42.2
VERSION_FREETYPE=2.10.4
VERSION_EXPAT=2.2.10
VERSION_FONTCONFIG=2.13.93
VERSION_HARFBUZZ=2.7.2
VERSION_HARFBUZZ=2.7.4
VERSION_PIXMAN=0.40.0
VERSION_CAIRO=1.17.4
VERSION_FRIBIDI=1.0.10
2 changes: 2 additions & 0 deletions linuxmusl-arm64v8/Dockerfile
Original file line number Diff line number Diff line change
@@ -42,11 +42,13 @@ RUN \
--no-modify-path \
--profile minimal \
&& \
rustup target add aarch64-unknown-linux-musl && \
pip3 install meson==0.55.3

# Compiler settings
ENV \
PLATFORM="linuxmusl-arm64" \
RUST_TARGET="aarch64-unknown-linux-musl" \
FLAGS="-O3 -fPIC"

# Musl defaults to static libs but we need them to be dynamic for host toolchain.