summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-04-18 06:17:48 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-04-18 06:17:48 -0700
commitbfc81fe0cb680d95ae8fc91ec94562d2df6e12e4 (patch)
tree15d848e2558e7f1f237e8242cce6ed509fe14aad /share
parentbdb2fac227cda2f1a4e28818824d3e060c9b3100 (diff)
downloadtxr-bfc81fe0cb680d95ae8fc91ec94562d2df6e12e4.tar.gz
txr-bfc81fe0cb680d95ae8fc91ec94562d2df6e12e4.tar.bz2
txr-bfc81fe0cb680d95ae8fc91ec94562d2df6e12e4.zip
compiler: bump object file version.
The instruction set architecture has changed due to the redimensioning of the frame display, so we must bump up the major number. * share/txr/stdlib/compiler.tl (%tlo-ver%): Change to (1 0). * parser.c (read_file_common): Refuse to load if major number isn't 1.
Diffstat (limited to 'share')
-rw-r--r--share/txr/stdlib/compiler.tl2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl
index f649b8e9..8b705835 100644
--- a/share/txr/stdlib/compiler.tl
+++ b/share/txr/stdlib/compiler.tl
@@ -1397,7 +1397,7 @@
(defvarl %big-endian% (equal (ffi-put 1 (ffi uint32)) #b'00000001'))
-(defvarl %tlo-ver% ^(0 0 ,%big-endian%))
+(defvarl %tlo-ver% ^(1 0 ,%big-endian%))
(defun open-compile-streams (in-path out-path)
(let* ((rsuff (r$ %file-suff-rx% in-path))