mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
Bump objcode minor version
* libguile/loader.h (SCM_OBJCODE_MINOR_VERSION): * module/system/vm/assembler.scm (*bytecode-minor-version*): Bump, so that compiled files from Guile 3.0.3 will error when loaded on 3.0.2.
This commit is contained in:
parent
a165c49b29
commit
c6636ff312
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@
|
||||||
/* Major and minor versions must be single characters. */
|
/* Major and minor versions must be single characters. */
|
||||||
#define SCM_OBJCODE_MAJOR_VERSION 4
|
#define SCM_OBJCODE_MAJOR_VERSION 4
|
||||||
#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
|
#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
|
||||||
#define SCM_OBJCODE_MINOR_VERSION 2
|
#define SCM_OBJCODE_MINOR_VERSION 3
|
||||||
#define SCM_OBJCODE_MAJOR_VERSION_STRING \
|
#define SCM_OBJCODE_MAJOR_VERSION_STRING \
|
||||||
SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION)
|
SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION)
|
||||||
#define SCM_OBJCODE_MINOR_VERSION_STRING \
|
#define SCM_OBJCODE_MINOR_VERSION_STRING \
|
||||||
|
|
|
@ -2183,7 +2183,7 @@ needed."
|
||||||
|
|
||||||
;; FIXME: Define these somewhere central, shared with C.
|
;; FIXME: Define these somewhere central, shared with C.
|
||||||
(define *bytecode-major-version* #x0300)
|
(define *bytecode-major-version* #x0300)
|
||||||
(define *bytecode-minor-version* 2)
|
(define *bytecode-minor-version* 3)
|
||||||
|
|
||||||
(define (link-dynamic-section asm text rw rw-init frame-maps)
|
(define (link-dynamic-section asm text rw rw-init frame-maps)
|
||||||
"Link the dynamic section for an ELF image with bytecode @var{text},
|
"Link the dynamic section for an ELF image with bytecode @var{text},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue