Changeset 3299

Show
Ignore:
Timestamp:
06/20/08 12:29:44 (7 months ago)
Author:
ksprotte
Message:

build.lisp: show name, version and features of lisp implementation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build.lisp

    r3241 r3299  
    22 
    33;; BKNR build script - Called by buildbot to build/test 
     4 
     5(setf *compile-verbose* nil) 
     6(setf *compile-print* nil) 
    47 
    58#+sbcl 
     
    1013(in-package :build) 
    1114 
     15(format t "Building with ~A ~A.~%Features: ~S~%" 
     16        (lisp-implementation-type) (lisp-implementation-version) 
     17        *features*) 
     18 
    1219#+openmcl 
    1320(setf ccl::*defmethod-declare-all-arguments-ignorable* t) 
    14  
    15 (setf *compile-verbose* nil) 
    16 (setf *compile-print* nil) 
    1721 
    1822(defun setup-registry (directory-path)