mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
Bensuperpc
eb0c4d8d95
Fix CMake error on manylinux1 Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
29 lines
754 B
Docker
29 lines
754 B
Docker
FROM quay.io/pypa/manylinux1_x86_64:latest
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/manylinux1-x64
|
|
ENV CMAKE_BIN true
|
|
|
|
#include "common.manylinux"
|
|
|
|
#include "common.dockcross"
|
|
|
|
#include "common.docker"
|
|
|
|
ENV CROSS_TRIPLE x86_64-linux-gnu
|
|
ENV CROSS_ROOT /opt/rh/devtoolset-2/root/usr/bin
|
|
ENV AS=${CROSS_ROOT}/as \
|
|
AR=${CROSS_ROOT}/ar \
|
|
CC=${CROSS_ROOT}/gcc \
|
|
CPP=${CROSS_ROOT}/cpp \
|
|
CXX=${CROSS_ROOT}/g++ \
|
|
LD=${CROSS_ROOT}/ld \
|
|
FC=${CROSS_ROOT}/gfortran
|
|
|
|
COPY linux-x64/${CROSS_TRIPLE}-noop.sh /usr/bin/${CROSS_TRIPLE}-noop
|
|
|
|
COPY manylinux1-x64/Toolchain.cmake ${CROSS_ROOT}/../lib/
|
|
ENV CMAKE_TOOLCHAIN_FILE ${CROSS_ROOT}/../lib/Toolchain.cmake
|
|
|
|
#include "common.label-and-env"
|