X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-config.sh;h=9fc7c2d3e0af741846d69c3cde99984d5ac739bd;hb=45c2a2e4daee0f48ca79e7d4f37c4ae636ac2fb9;hp=3dcbe1ee343819512d20aac748a5276ba55cab92;hpb=a2ff6543c79752bfe42578f794bda1c28167fd10;p=sbcl.git diff --git a/make-config.sh b/make-config.sh index 3dcbe1e..9fc7c2d 100644 --- a/make-config.sh +++ b/make-config.sh @@ -200,6 +200,7 @@ if [ "$sbcl_arch" = "x86" ]; then fi elif [ "$sbcl_arch" = "x86-64" ]; then printf ' :gencgc :stack-grows-downward-not-upward :c-stack-is-control-stack :linkage-table' >> $ltf + printf ' :stack-allocatable-closures' >> $ltf elif [ "$sbcl_arch" = "mips" ]; then # Use a little C program to try to guess the endianness. Ware # cross-compilers! @@ -213,9 +214,11 @@ elif [ "$sbcl_arch" = "ppc" -a "$sbcl_os" = "linux" ]; then # versions 2.3.1 and 2.3.2 # # FIXME: integrate to grovel-features., maypahps + printf ' :stack-allocatable-closures' >> $ltf $GNUMAKE -C tools-for-build where-is-mcontext -I src/runtime tools-for-build/where-is-mcontext > src/runtime/ppc-linux-mcontext.h elif [ "$sbcl_arch" = "ppc" -a "$sbcl_os" = "darwin" ]; then + printf ' :stack-allocatable-closures' >> $ltf # We provide a dlopen shim, so a little lie won't hurt printf " :os-provides-dlopen :linkage-table" >> $ltf # The default stack ulimit under darwin is too small to run PURIFY. @@ -234,6 +237,8 @@ elif [ "$sbcl_arch" = "sparc" ]; then if [ "$sbcl_os" = "sunos" ] || [ "$sbcl_os" = "linux" ]; then printf ' :linkage-table' >> $ltf fi +elif [ "$sbcl_arch" = "alpha" ]; then + printf ' :stack-allocatable-closures' >> $ltf else # Nothing need be done in this case, but sh syntax wants a placeholder. echo > /dev/null