From 273ee7d375cb34af45f395d74d317e9b58314ee7 Mon Sep 17 00:00:00 2001 From: Tao Luo Date: Mon, 20 Jul 2020 20:54:10 +0800 Subject: [PATCH] update patchelf to v0.10 (#25504) --- tools/manylinux1/Dockerfile.cuda10_cudnn7_gcc8_ubuntu16 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/manylinux1/Dockerfile.cuda10_cudnn7_gcc8_ubuntu16 b/tools/manylinux1/Dockerfile.cuda10_cudnn7_gcc8_ubuntu16 index d421f5ec80..837f0e486f 100644 --- a/tools/manylinux1/Dockerfile.cuda10_cudnn7_gcc8_ubuntu16 +++ b/tools/manylinux1/Dockerfile.cuda10_cudnn7_gcc8_ubuntu16 @@ -143,6 +143,11 @@ RUN wget -q https://paddlepaddledeps.bj.bcebos.com/TensorRT-6.0.1.5.Ubuntu-16.04 tar -zxf TensorRT-6.0.1.5.Ubuntu-16.04.x86_64-gnu.cuda-10.1.cudnn7.tar.gz -C /usr/local && \ cp -rf /usr/local/TensorRT-6.0.1.5/include/* /usr/include/ && cp -rf /usr/local/TensorRT-6.0.1.5/lib/* /usr/lib/ +# Install patchelf-0.10 +RUN wget https://paddle-ci.gz.bcebos.com/patchelf-0.10.tar.gz && \ + tar -zxvf patchelf-0.10.tar.gz && cd patchelf-0.10 && \ + ./configure && make -j8 && make install + # git credential to skip password typing RUN git config --global credential.helper store -- GitLab