mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
Bump objcode minor version in preparation for new stable series
* libguile/loader.h (SCM_OBJCODE_MINIMUM_MINOR_VERSION): (SCM_OBJCODE_MINOR_VERSION): * module/system/vm/assembler.scm (*bytecode-minor-version*): Bump.
This commit is contained in:
parent
1733efe236
commit
53a3602b20
2 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright 2001,2009-2015,2018
|
/* Copyright 2001,2009-2015,2018,2020
|
||||||
Free Software Foundation, Inc.
|
Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of Guile.
|
This file is part of Guile.
|
||||||
|
@ -39,8 +39,8 @@
|
||||||
|
|
||||||
/* 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 1
|
#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 2
|
||||||
#define SCM_OBJCODE_MINOR_VERSION 1
|
#define SCM_OBJCODE_MINOR_VERSION 2
|
||||||
#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 \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;;; Guile bytecode assembler
|
;;; Guile bytecode assembler
|
||||||
|
|
||||||
;;; Copyright (C) 2001, 2009-2019 Free Software Foundation, Inc.
|
;;; Copyright (C) 2001, 2009-2020 Free Software Foundation, Inc.
|
||||||
;;;
|
;;;
|
||||||
;;; This library is free software; you can redistribute it and/or
|
;;; This library is free software; you can redistribute it and/or
|
||||||
;;; modify it under the terms of the GNU Lesser General Public
|
;;; modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -2119,7 +2119,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* 1)
|
(define *bytecode-minor-version* 2)
|
||||||
|
|
||||||
(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