X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-grovel%2Fdef-to-lisp.lisp;h=7549b86e230624893798da146077ebb9cc654fbd;hb=30918f91c144b51c5c204427b2fd70d49b8d1407;hp=3aedfe208b73be366245a2add1d72406cc5d789a;hpb=9848482c761d4ecdafb43889a5c7a759c0f24b9a;p=sbcl.git diff --git a/contrib/sb-grovel/def-to-lisp.lisp b/contrib/sb-grovel/def-to-lisp.lisp index 3aedfe2..7549b86 100644 --- a/contrib/sb-grovel/def-to-lisp.lisp +++ b/contrib/sb-grovel/def-to-lisp.lisp @@ -112,10 +112,12 @@ code: (dolist (def definitions) (destructuring-bind (type lispname cname &optional doc export) def (case type - (:integer + ((:integer :errno) (as-c "#ifdef" cname) (printf "(cl:defconstant ~A %d \"~A\")" lispname doc cname) + (when (eql type :errno) + (printf "(cl:setf (get '~A 'errno) t)" lispname)) (as-c "#else") (printf "(sb-int:style-warn \"Couldn't grovel for ~A (unknown to the C compiler).\")" cname) (as-c "#endif")) @@ -151,7 +153,10 @@ code: (print-c-source f headers definitions package))))) (defclass grovel-constants-file (asdf:cl-source-file) - ((package :accessor constants-package :initarg :package))) + ((package :accessor constants-package :initarg :package) + (do-not-grovel :accessor do-not-grovel + :initform nil + :initarg :do-not-grovel))) (define-condition c-compile-failed (compile-failed) () (:report (lambda (c s) @@ -183,44 +188,48 @@ code: (terpri) (funcall (intern "C-CONSTANTS-EXTRACT" (find-package "SB-GROVEL")) filename tmp-c-source (constants-package component)) - (let* ((cc (or (sb-ext:posix-getenv "CC") - ;; It might be nice to include a CONTINUE or - ;; USE-VALUE restart here, but ASDF seems to insist - ;; on handling the errors itself. - (error "The CC environment variable has not been set in SB-GROVEL. Since this variable should always be set during the SBCL build process, this might indicate an SBCL with a broken contrib installation."))) - (code (sb-ext:process-exit-code - (sb-ext:run-program - cc - (append - (split-cflags (sb-ext:posix-getenv "EXTRA_CFLAGS")) - #+(and linux largefile) - '("-D_LARGEFILE_SOURCE" - "-D_LARGEFILE64_SOURCE" - "-D_FILE_OFFSET_BITS=64") - (list "-o" - (namestring tmp-a-dot-out) - (namestring tmp-c-source))) - :search t - :input nil - :output *trace-output*)))) - (unless (= code 0) - (case (operation-on-failure op) - (:warn (warn "~@" - op component)) - (:error - (error 'c-compile-failed :operation op :component component))))) - (let ((code (sb-ext:process-exit-code - (sb-ext:run-program (namestring tmp-a-dot-out) - (list (namestring tmp-constants)) - :search nil - :input nil - :output *trace-output*)))) - (unless (= code 0) - (case (operation-on-failure op) - (:warn (warn "~@" - op component)) - (:error - (error 'a-dot-out-failed :operation op :component component))))) + (unless (do-not-grovel component) + (let* ((cc (or (and (string/= (sb-ext:posix-getenv "CC") "") + (sb-ext:posix-getenv "CC")) + ;; It might be nice to include a CONTINUE or + ;; USE-VALUE restart here, but ASDF seems to insist + ;; on handling the errors itself. + (error "The CC environment variable has not been set in SB-GROVEL. Since this variable should always be set during the SBCL build process, this might indicate an SBCL with a broken contrib installation."))) + (code (sb-ext:process-exit-code + (sb-ext:run-program + cc + (append + (split-cflags (sb-ext:posix-getenv "EXTRA_CFLAGS")) + #+(and linux largefile) + '("-D_LARGEFILE_SOURCE" + "-D_LARGEFILE64_SOURCE" + "-D_FILE_OFFSET_BITS=64") + #+(and x86-64 darwin) + '("-arch" "x86_64") + (list "-o" + (namestring tmp-a-dot-out) + (namestring tmp-c-source))) + :search t + :input nil + :output *trace-output*)))) + (unless (= code 0) + (case (operation-on-failure op) + (:warn (warn "~@" + op component)) + (:error + (error 'c-compile-failed :operation op :component component))))) + (let ((code (sb-ext:process-exit-code + (sb-ext:run-program (namestring tmp-a-dot-out) + (list (namestring tmp-constants)) + :search nil + :input nil + :output *trace-output*)))) + (unless (= code 0) + (case (operation-on-failure op) + (:warn (warn "~@" + op component)) + (:error + (error 'a-dot-out-failed :operation op :component component)))))) (multiple-value-bind (output warnings-p failure-p) (compile-file tmp-constants :output-file output-file) (when warnings-p