Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Err, cherry-pick the relevant benchmark fix commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
antifuchs committed May 3, 2011
1 parent e72452d commit b26efbe
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lisp/sbcl.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,14 @@
implementation))

(defun prepare-sbcl-environment ()
(remove-if (lambda (elt)
(member elt '("SBCL_HOME" "LC_CTYPE")
:test #'string-equal))
(nconc
(remove-if (lambda (elt)
(member elt '("SBCL_HOME" "LC_CTYPE" "LANGUAGE")
:test #'string-equal))
#+sbcl(sb-ext:posix-environ)
#-sbcl()
:key (lambda (envl) (subseq envl 0 (position #\= envl)))))
:key (lambda (envl) (subseq envl 0 (position #\= envl))))
(list "LC_CTYPE=C")))

(defun prepare-bench-sbcl-cmdline (impl arch shell-quote-p)
`(,(format nil "~A" (shellquote (namestring (implementation-cached-file-name impl "sbcl")) shell-quote-p))
Expand Down

0 comments on commit b26efbe

Please sign in to comment.