Changeset 14142
- Timestamp:
- 09/01/12 20:59:40 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/compile-system.lisp
r14121 r14142 258 258 (unless output-path 259 259 (setf output-path *default-pathname-defaults*)) 260 (flet ((do-compile (file )260 (flet ((do-compile (file &key (extract t)) 261 261 (let ((out (make-pathname :type *compile-file-type* 262 262 :defaults (merge-pathnames … … 264 264 (compile-file-if-needed file 265 265 :output-file out 266 :extract-toplevel-funcs-and-macros t))))266 :extract-toplevel-funcs-and-macros extract)))) 267 267 (load (do-compile "defstruct.lisp")) 268 268 (load (do-compile "coerce.lisp")) … … 453 453 ;; Compile the file in the build directory instead of the one in the 454 454 ;; sources directory - the latter being for bootstrapping only. 455 (do-compile (merge-pathnames #p"autoloads-gen.lisp" output-path)) 456 (do-compile "autoloads.lisp")) 455 (do-compile (merge-pathnames #p"autoloads-gen.lisp" output-path) 456 :extract nil) 457 (do-compile "autoloads.lisp" 458 :extract nil)) 457 459 t)) 458 460
Note: See TracChangeset
for help on using the changeset viewer.