72d7ec9d8c
Motivation: LSE (https://mysqlonarm.github.io/ARM-LSE-and-MySQL/) can have a huge performance difference. Let's ensure we use a compiler that can support it. Modifications: Update to gc10 when cross-compiling as it supports LSE and enables it by default Result: More optimized builds for aarch64
18 lines
752 B
Docker
18 lines
752 B
Docker
FROM centos:7.6.1810
|
|
|
|
ARG gcc_version=10.2-2020.11
|
|
ENV GCC_VERSION $gcc_version
|
|
|
|
# Install requirements
|
|
RUN yum install -y wget tar git make redhat-lsb-core autoconf automake libtool glibc-devel libaio-devel openssl-devel apr-devel lksctp-tools
|
|
|
|
# Install Java
|
|
RUN yum install -y java-1.8.0-openjdk-devel
|
|
|
|
# Install aarch64 gcc 10.2 toolchain
|
|
RUN wget https://developer.arm.com/-/media/Files/downloads/gnu-a/$GCC_VERSION/binrel/gcc-arm-$GCC_VERSION-x86_64-aarch64-none-linux-gnu.tar.xz && \
|
|
tar xvf gcc-arm-$GCC_VERSION-x86_64-aarch64-none-linux-gnu.tar.xz && mv gcc-arm-$GCC_VERSION-x86_64-aarch64-none-linux-gnu /opt/
|
|
ENV PATH="/opt/gcc-arm-$GCC_VERSION-x86_64-aarch64-none-linux-gnu/bin:${PATH}"
|
|
|
|
ENV JAVA_HOME="/usr/lib/jvm/java-1.8.0-openjdk/"
|