-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Dockerfile used for building mirrord-layer for x64 with very old libc | ||
# this to support centos7 or Amazon Linux 2. | ||
|
||
FROM ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main-centos | ||
|
||
# This fails to compile but tbh shouldn't really change so just stick with old always T_T | ||
RUN yum update -y && \ | ||
yum install centos-release-scl -y && \ | ||
yum install llvm-toolset-7 -y | ||
|
||
ENV LIBCLANG_PATH=/opt/rh/llvm-toolset-7/root/usr/lib64/ \ | ||
LIBCLANG_STATIC_PATH=/opt/rh/llvm-toolset-7/root/usr/lib64/ \ | ||
CLANG_PATH=/opt/rh/llvm-toolset-7/root/usr/bin/clang |
File renamed without changes.