From: Christophe Rhodes Date: Sun, 12 Jun 2005 22:08:23 +0000 (+0000) Subject: 0.9.1.39: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=3463b858635f78b4230c4e459892b611c5bfd9d4;p=sbcl.git 0.9.1.39: Restore alpha buildability. ... define two-arg-/= as a static function; ... don't grep out A symbols from nm. --- diff --git a/src/compiler/alpha/parms.lisp b/src/compiler/alpha/parms.lisp index 8d3ce22..e7299a2 100644 --- a/src/compiler/alpha/parms.lisp +++ b/src/compiler/alpha/parms.lisp @@ -216,6 +216,7 @@ ;; a comment from old CMU CL or old old CMU CL or ;; the SBCL alpha port or what? Do we need to worry about it, ;; or can we delete it? + sb!kernel:two-arg-/= eql sb!kernel:%negate sb!kernel:two-arg-and diff --git a/src/runtime/linux-nm b/src/runtime/linux-nm index 2804e90..70ea4ea 100755 --- a/src/runtime/linux-nm +++ b/src/runtime/linux-nm @@ -1,2 +1,7 @@ #!/bin/sh -nm -p "$@" | grep -v " [AabcdgIiNnrstUuvw?-] " + +# " A " used to be in the set of removed symbols, but it turns out +# that the alpha implementation of closure_tramp and undefined_tramp +# is as an A. Whatever that is. CSR, 2005-06-12. + +nm -p "$@" | grep -v " [abcdgIiNnrstUuvw?-] " diff --git a/version.lisp-expr b/version.lisp-expr index c0500a2..9d965c1 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.1.38" +"0.9.1.39"