From 3575cc38620440e94d3315242c73d68109d5966a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Tue, 10 Dec 2024 17:36:34 +0100 Subject: [PATCH] Fix R 4.0.x build on x86_64 Afteer rebuilding some libs with -fPIC. --- dockerfiles/bionic/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dockerfiles/bionic/Dockerfile b/dockerfiles/bionic/Dockerfile index 0604d82..50bda7e 100644 --- a/dockerfiles/bionic/Dockerfile +++ b/dockerfiles/bionic/Dockerfile @@ -103,9 +103,12 @@ RUN export ARCH=$(dpkg --print-architecture) && \ curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libgraphite2-dev_1.3.11-2_$ARCH.deb && \ curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libpango1.0-dev_1.40.14-1ubuntu0.1_$ARCH.deb && \ curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libharfbuzz-dev_1.7.2-1ubuntu1_$ARCH.deb && \ + curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libdatrie-dev_0.2.10-7_$ARCH.deb && \ + curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libpcre3-dev_8.39-9ubuntu0.1_$ARCH.deb && \ + curl -LO https://github.com/r-hub/r-glibc/releases/download/bionic/libglib2.0-dev_2.56.4-0ubuntu0.18.04.9_$ARCH.deb && \ dpkg -i ./zlib* libpixman* libfreetype6* libtiff* libjbig* \ libjpeg* liblzma* libpng* libfontconfig* libexpat* libcairo* \ - libgcc* libgfortran* libgraphite2* libpango* libharfbuzz* && \ + libgcc* libgfortran* libgraphite2* libpango* libharfbuzz* libdatrie* libpcre3* libglib* && \ rm *.deb; \ fi