Skip to content

Commit 0d3404b

Browse files
committed
Bumped minimal Prolog version
1 parent 17ffe87 commit 0d3404b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ upgrade-emacs:
913913
echo MAYBE git clean -dxf && \
914914
git pull --jobs=8 --recurse --rebase=no && \
915915
./autogen.sh && \
916-
./configure --prefix=$$HOME/.local --with-harfbuzz && \
916+
./configure --prefix=$$HOME/.local --with-harfbuzz --with-native-compilation=no && \
917917
make -j $(NPROC_BAZEL) bootstrap && \
918918
make install
919919

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ impossible and I really don't feel like becoming a git guru.
153153

154154

155155
* Install [SWI-Prolog](http://www.swi-prolog.org/Download.html). You
156-
need at least version 8.3.24, so as of 2021-05-08, this means
156+
need at least version 9.3.5, so as of 2024-04-30, this means
157157
using the "devel" download or PPA.
158158
For Ubuntu, Debian, and similar (following the instructions at https://www.swi-prolog.org/build/PPA.html):
159159
* `sudo apt install software-properties-common`
@@ -492,6 +492,13 @@ UTF8 everywhere).
492492

493493
## Known issues
494494

495+
* You might get a mysterious error message about
496+
"builtins_version(...) should be ..."; this typically indicates
497+
that the Prolog or Python interpreter has changed since the
498+
last processing. The simplest solution is to delete all the output
499+
(e.g., `rm -rf /tmp/pykythe`) and re-run.
500+
501+
495502
* See also https://github.com/kamahen/pykythe/issues
496503

497504
* Needs more documentation.

scripts/demo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -o pipefail
1414
SRCDIR=$HOME/src # Change as needed
1515
DOWNLOADDIR=$HOME/Downloads # Change as needed
1616
KYTHE_VERSION=v0.0.37 # Change as needed
17-
NEED_SWIPL_VERSION="8.3.24" # Change as needed
17+
NEED_SWIPL_VERSION="9.3.5" # Change as needed
1818

1919
# The following are needed only if you don't have Python3.7 already:
2020
# sudo add-apt-repository ppa:deadsnakes/ppa

0 commit comments

Comments
 (0)