From 45bcbd0dab97d4235b100793574d2a940045f493 Mon Sep 17 00:00:00 2001 From: William Harold Newman Date: Sun, 19 May 2002 19:17:08 +0000 Subject: [PATCH] 0.7.3.20: fixed my clerical error in Stig Erik Sandoe's C callback patch (pointed out by SES on sbcl-devel 2002-05-14) --- src/runtime/Config.x86-linux | 9 ++++++--- version.lisp-expr | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index 85ecf3b..0171ac5 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-linux @@ -11,7 +11,7 @@ ASSEM_SRC = x86-assem.S ldso-stubs.S ARCH_SRC = x86-arch.c OS_SRC = linux-os.c x86-linux-os.c os-common.c -# The "--Wl --export-dynamic" flags are here to help people +# The "--Wl,--export-dynamic" flags are here to help people # experimenting with callbacks from C to SBCL, by allowing linkage to # SBCL src/runtime/*.c symbols from C. Work on this is good, but it's # definitely bleeding edge and not particularly stable. In particular, @@ -19,8 +19,11 @@ OS_SRC = linux-os.c x86-linux-os.c os-common.c # data unstable, but even the basic calling convention might end up # being unstable. Unless you want to do some masochistic maintenance # work when new releases of SBCL come out, please don't try to build -# real code on this until a coherent stable interface has been added! -OS_LINK_FLAGS = -Wl --export-dynamic +# real code on this until a coherent stable interface has been added. +# (You *are* encouraged to design and implement a coherent stable +# interface, though.:-| As far as I (WHN 2002-05-19) know, no one is +# working on one and it would be a nice thing to have.) +OS_LINK_FLAGS = -Wl,--export-dynamic OS_LIBS = -ldl GC_SRC = gencgc.c diff --git a/version.lisp-expr b/version.lisp-expr index 5850512..a0d27bc 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -18,4 +18,4 @@ ;;; for internal versions, especially for internal versions off the ;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.7.3.19" +"0.7.3.20" -- 1.7.10.4