Skip to content

Commit

Permalink
objpascal: update to 24.04 to fix stepA segfault.
Browse files Browse the repository at this point in the history
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 ***
  • Loading branch information
kanaka committed Aug 5, 2024
1 parent a2cd4a5 commit 09c0daa
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions impls/objpascal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:xenial
FROM ubuntu:24.04
MAINTAINER Joel Martin <github@martintribe.org>

##########################################################
Expand All @@ -9,7 +9,8 @@ MAINTAINER Joel Martin <github@martintribe.org>
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
Expand Down

0 comments on commit 09c0daa

Please sign in to comment.