Skip to content

Commit 534f33f

Browse files
cktiicktii
authored andcommitted
Merge branch 'master' into behaviortreecpp
2 parents dc6523a + e007cb7 commit 534f33f

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

infra/base-images/base-builder/install_swift.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ apt-get update && apt install -y $SWIFT_PACKAGES && \
3737
apt install -y $SWIFT_SYMBOLIZER_PACKAGES --no-install-recommends
3838

3939

40-
wget -q https://download.swift.org/swift-5.8.1-release/ubuntu2004/swift-5.8.1-RELEASE/swift-5.8.1-RELEASE-ubuntu20.04.tar.gz
41-
tar xzf swift-5.8.1-RELEASE-ubuntu20.04.tar.gz
42-
cp -r swift-5.8.1-RELEASE-ubuntu20.04/usr/* /usr/
43-
rm -rf swift-5.8.1-RELEASE-ubuntu20.04.tar.gz swift-5.8.1-RELEASE-ubuntu20.04/
40+
wget -q https://download.swift.org/swift-5.10.1-release/ubuntu2004/swift-5.10.1-RELEASE/swift-5.10.1-RELEASE-ubuntu20.04.tar.gz
41+
tar xzf swift-5.10.1-RELEASE-ubuntu20.04.tar.gz
42+
cp -r swift-5.10.1-RELEASE-ubuntu20.04/usr/* /usr/
43+
rm -rf swift-5.10.1-RELEASE-ubuntu20.04.tar.gz swift-5.10.1-RELEASE-ubuntu20.04/
4444
# TODO: Move to a seperate work dir
4545
git clone https://github.com/llvm/llvm-project.git
4646
cd llvm-project

projects/libxml2/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,17 @@ RUN apt-get update && \
2626
make autoconf libtool pkg-config \
2727
zlib1g-dev liblzma-dev \
2828
$EXTRA_PACKAGES
29+
2930
# Build requires automake 1.16.3
3031
RUN curl -LO http://mirrors.kernel.org/ubuntu/pool/main/a/automake-1.16/automake_1.16.5-1.3_all.deb && \
3132
apt install ./automake_1.16.5-1.3_all.deb
33+
34+
# Disable buggy TSCII charset in glibc
35+
RUN sed -i.orig -e '/TSCII/ s/.*/#&/' /usr/lib/x86_64-linux-gnu/gconv/gconv-modules
36+
# For newer distros
37+
#RUN sed -i.orig -e '/TSCII/ s/.*/#&/' /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.d/gconv-modules-extra.conf
38+
RUN iconvconfig
39+
3240
RUN git clone --depth 1 https://gitlab.gnome.org/GNOME/libxml2.git
3341
WORKDIR libxml2
3442
COPY build.sh $SRC/

0 commit comments

Comments
 (0)