Changeset 12514
- Timestamp:
- 03/03/10 15:18:41 (13 years ago)
- Location:
- trunk/abcl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/CHANGES
r12511 r12514 6 6 Features 7 7 -------- 8 9 * [svn 12513] Implement SYS:SRC and SYS:JAVA logical pathname 10 translations for system Lisp source and the root of the Java package 11 structure, respectively. 8 12 9 13 * [svn 12505] All calls to anonymous functions and local functions that have -
trunk/abcl/build.xml
r12487 r12514 81 81 82 82 <patternset id="abcl.objects"> 83 <!-- "system.lisp" is dynamically created by COMPILE-SYSTEM --> 84 <include name="org/armedbear/lisp/system.lisp"/> 83 85 <include name="org/armedbear/lisp/**/*.class"/> 84 86 <include name="org/armedbear/lisp/**/*.cls"/> -
trunk/abcl/src/org/armedbear/lisp/boot.lisp
r12392 r12514 192 192 (%format t "Startup completed in ~A seconds.~%" 193 193 (float (/ (ext:uptime) 1000))))) 194 195 ;;; "system.lisp" contains system installation specific information 196 ;;; (currently only the logical pathname definition for "SYS;SRC") 197 ;;; that is not currently required for ABCL to run. Since 198 ;;; LOAD-SYSTEM-FILE exits the JVM if its argument cannot be found, we 199 ;;; use REQUIRE trapping any error. 200 (handler-case 201 (require 'system) 202 (t ())) 203 -
trunk/abcl/src/org/armedbear/lisp/compile-system.lisp
r12422 r12514 285 285 (unless failure-p 286 286 (setf status 0))))) 287 (create-system-logical-translations output-path) 287 288 (when quit 288 289 (quit :status status)))) 290 291 (defun create-system-logical-translations (output-path) 292 (let* ((dir (directory-namestring (pathname output-path))) 293 (system (merge-pathnames "system.lisp" dir)) 294 (home (pathname *lisp-home*)) 295 (src (format nil "~A**/*.*" home)) 296 (java (format nil "~A../../../**/*.*" home))) 297 (with-open-file (s system :direction :output 298 :if-exists :supersede) 299 (write `(setf (logical-pathname-translations "sys") 300 '(("SYS:SRC;**;*.*" ,src) 301 ("SYS:JAVA;**;*.*" ,java))) 302 :stream s)))) 303
Note: See TracChangeset
for help on using the changeset viewer.