X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-grovel%2Fdef-to-lisp.lisp;h=201eaf8e104ef69c422a987dd90b9cc3a40f2c82;hb=b5c69cfe906a31ae57bb0f18c67af9d2eaa1dfef;hp=e091d5968a4cd3cda778dced4cf858eecf9356dc;hpb=833f66a5363cf6c3a4082afcf9d76cec72e7cdf8;p=sbcl.git diff --git a/contrib/sb-grovel/def-to-lisp.lisp b/contrib/sb-grovel/def-to-lisp.lisp index e091d59..201eaf8 100644 --- a/contrib/sb-grovel/def-to-lisp.lisp +++ b/contrib/sb-grovel/def-to-lisp.lisp @@ -5,6 +5,15 @@ (defun escape-for-string (string) (c-escape string)) +(defun split-cflags (string) + (remove-if (lambda (flag) + (zerop (length flag))) + (loop + for start = 0 then (if end (1+ end) nil) + for end = (and start (position #\Space string :start start)) + while start + collect (subseq string start end)))) + (defun c-escape (string &optional (dangerous-chars '(#\")) (escape-char #\\)) "Escape DANGEROUS-CHARS in STRING, with ESCAPE-CHAR." (coerce (loop for c across string @@ -174,19 +183,28 @@ code: (terpri) (funcall (intern "C-CONSTANTS-EXTRACT" (find-package "SB-GROVEL")) filename tmp-c-source (constants-package component)) - (let ((code (sb-ext:process-exit-code - (sb-ext:run-program - "gcc" - (append - (let ((cf (sb-ext:posix-getenv "EXTRA_CFLAGS"))) - (when (plusp (length cf)) - (list cf))) - (list "-o" + (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") + #+(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*)))) + :search t + :input nil + :output *trace-output*)))) (unless (= code 0) (case (operation-on-failure op) (:warn (warn "~@"