mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Headed towards a 4.0. The binary format will change slightly but incompatibly (e.g. renumbering of intrinsics). Having a new GC is enough of a change to warrant a minor version bump, and it's been 5 years so why not go major. * GUILE-VERSION (GUILE_EFFECTIVE_VERSION): Bump to 4.0. (GUILE_MICRO_VERSION, GUILE_MINOR_VERSION): Bump to 3.9.0. (LIBGUILE_INTERFACE_CURRENT, LIBGUILE_INTERFACE_AGE): Reset. * meta/guile-4.0.pc.in: * meta/guile-4.0-uninstalled.pc.in: Rename from guile-3.0. * .gitignore: Ignore pkg-config files with 4.0 effective version. * README: Update slightly. * doc/ref/api-evaluation.texi (Load Paths): * doc/ref/api-options.texi (Build Config): * doc/ref/guile-invoke.texi (Environment Variables): * doc/ref/history.texi (A Timeline of Selected Guile Releases): * doc/ref/libguile-parallel.texi (Parallel Installations): * doc/ref/srfi-modules.texi (SRFI-0): Update references to stable version in paths. * module/system/vm/assembler.scm (*bytecode-minor-version*): * libguile/loader.h (SCM_OBJCODE_MAJOR_VERSION): (SCM_OBJCODE_MINIMUM_MINOR_VERSION): (SCM_OBJCODE_MINOR_VERSION): Use the same major objcode version for now but bump the minor to 99. * meta/guile.m4 (GUILE_PKG, GUILE_PROGS): Check for Guile 4.0. * module/ice-9/boot-9.scm (%cond-expand-features): Add new cond-expand features.
64 lines
2.2 KiB
C
64 lines
2.2 KiB
C
/* Copyright 2001,2009-2015,2018,2020,2021,2023,2025
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of Guile.
|
|
|
|
Guile is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU Lesser General Public License as published
|
|
by the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Guile is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with Guile. If not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef _SCM_LOADER_H_
|
|
#define _SCM_LOADER_H_
|
|
|
|
#include <libguile/scm.h>
|
|
|
|
#ifdef BUILDING_LIBGUILE
|
|
|
|
/* The endianness marker in objcode. */
|
|
#ifdef WORDS_BIGENDIAN
|
|
# define SCM_OBJCODE_ENDIANNESS "BE"
|
|
#else
|
|
# define SCM_OBJCODE_ENDIANNESS "LE"
|
|
#endif
|
|
|
|
#define _SCM_CPP_STRINGIFY(x) # x
|
|
#define SCM_CPP_STRINGIFY(x) _SCM_CPP_STRINGIFY (x)
|
|
|
|
/* The word size marker in objcode. */
|
|
#define SCM_OBJCODE_WORD_SIZE SCM_CPP_STRINGIFY (SIZEOF_VOID_P)
|
|
|
|
/* Major and minor versions must be single characters. */
|
|
#define SCM_OBJCODE_MAJOR_VERSION 3
|
|
#define SCM_OBJCODE_MINIMUM_MINOR_VERSION 99
|
|
#define SCM_OBJCODE_MINOR_VERSION 99
|
|
#define SCM_OBJCODE_MAJOR_VERSION_STRING \
|
|
SCM_CPP_STRINGIFY(SCM_OBJCODE_MAJOR_VERSION)
|
|
#define SCM_OBJCODE_MINOR_VERSION_STRING \
|
|
SCM_CPP_STRINGIFY(SCM_OBJCODE_MINOR_VERSION)
|
|
#define SCM_OBJCODE_VERSION_STRING \
|
|
SCM_OBJCODE_MAJOR_VERSION_STRING "." SCM_OBJCODE_MINOR_VERSION_STRING
|
|
#define SCM_OBJCODE_MACHINE_VERSION_STRING \
|
|
SCM_OBJCODE_ENDIANNESS "-" SCM_OBJCODE_WORD_SIZE "-" SCM_OBJCODE_VERSION_STRING
|
|
|
|
#endif
|
|
|
|
SCM_API SCM scm_load_thunk_from_file (SCM filename);
|
|
SCM_API SCM scm_load_thunk_from_memory (SCM bv);
|
|
|
|
SCM_INTERNAL const uint8_t *
|
|
scm_find_slot_map_unlocked (const uint32_t *ip);
|
|
|
|
SCM_INTERNAL void scm_bootstrap_loader (void);
|
|
SCM_INTERNAL void scm_init_loader (void);
|
|
|
|
#endif /* _SCM_LOADER_H_ */
|