From 09c0daabcbfc62a818a87653925946621ed1e34c Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Mon, 5 Aug 2024 11:12:33 -0500 Subject: [PATCH] objpascal: update to 24.04 to fix stepA segfault. With older compiler, the following error occurs: user> (apply str (seq "this is a test")) *** Error in `../objpascal/stepA_mal': corrupted size vs. prev_size: 0x000000000246c360 *** --- impls/objpascal/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/impls/objpascal/Dockerfile b/impls/objpascal/Dockerfile index 7173442f3d..743ec8bbea 100644 --- a/impls/objpascal/Dockerfile +++ b/impls/objpascal/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:xenial +FROM ubuntu:24.04 MAINTAINER Joel Martin ########################################################## @@ -9,7 +9,8 @@ MAINTAINER Joel Martin RUN apt-get -y update # Required for running tests -RUN apt-get -y install make python +RUN apt-get -y install make python3 +RUN ln -fs /usr/bin/python3 /usr/local/bin/python # Some typical implementation and test requirements RUN apt-get -y install curl libreadline-dev libedit-dev