diff options
author | Andy Wingo <wingo@pobox.com> | 2013-11-19 20:02:15 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-11-19 20:02:15 +0100 |
commit | 8bf83893c746326dd1f10f1381423bd0406cf58c (patch) | |
tree | 1bb53a9efb8fdaaef0b0682a4659baddd7dae329 /module/system/vm/assembler.scm | |
parent | 6b9470bf483e14e10ae85fc6bcbc25b4e2e77ff7 (diff) | |
download | guile-8bf83893c746326dd1f10f1381423bd0406cf58c.tar.gz |
Rename DT_GUILE_VM_VERSION.
* libguile/objcodes.c (DT_GUILE_VM_VERSION, process_dynamic_segment):
* module/system/vm/elf.scm (DT_GUILE_VM_VERSION): Rename from
DT_GUILE_RTL_VERSION.
* module/system/vm/assembler.scm (link-dynamic-section): Adapt.
Diffstat (limited to 'module/system/vm/assembler.scm')
-rw-r--r-- | module/system/vm/assembler.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/system/vm/assembler.scm b/module/system/vm/assembler.scm index fd99179d4..7c1d58982 100644 --- a/module/system/vm/assembler.scm +++ b/module/system/vm/assembler.scm @@ -1220,7 +1220,7 @@ it will be added to the GC roots at runtime." (* i word-size) 0 label) relocs)) (%set-uword! bv (* i word-size) 0 endianness)))) - (set-uword! 0 DT_GUILE_RTL_VERSION) + (set-uword! 0 DT_GUILE_VM_VERSION) (set-uword! 1 (logior (ash *bytecode-major-version* 16) *bytecode-minor-version*)) (set-uword! 2 DT_GUILE_ENTRY) |