mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Allow specifying path to ucd data for make-target-2
This commit is contained in:
parent
973cafa3c7
commit
c664466634
|
|
@ -51,7 +51,7 @@ mv build-id.inc output
|
|||
|
||||
# make-host-1 and copy the generated C headers to the target machine
|
||||
sh make-host-1.sh
|
||||
tar cf - src/runtime/genesis | ssh $ssh_port_opt $host cd $root \; tar xf -
|
||||
tar cf - src/runtime/genesis output/ucd | ssh $ssh_port_opt $host cd $root \; tar xf -
|
||||
|
||||
# make-target-1 and copy back the artifacts
|
||||
ssh $ssh_port_opt $host cd $root \; $ENV sh make-target-1.sh
|
||||
|
|
|
|||
|
|
@ -13,8 +13,12 @@
|
|||
|
||||
(eval-when (:compile-toplevel :execute)
|
||||
(defun read-from-file (namestring &key (enforce-single-expr t) build-dependent)
|
||||
(declare (ignore build-dependent))
|
||||
(with-open-file (s namestring)
|
||||
(declare (notinline concatenate) (ignore build-dependent))
|
||||
(with-open-file
|
||||
(s (concatenate 'string (if (boundp 'cl-user::*generated-sources-root*)
|
||||
(symbol-value 'cl-user::*generated-sources-root*)
|
||||
"")
|
||||
namestring))
|
||||
(let* ((result (read s))
|
||||
(eof-result (cons nil nil)))
|
||||
(unless enforce-single-expr
|
||||
|
|
|
|||
Loading…
Reference in a new issue