Skip to content
Snippets Groups Projects
Commit f83cc32c authored by Gary King's avatar Gary King
Browse files

Change ABL enabler, CLISP/Windows/Symlink patch

* rename
  *place-binaries-in-implementation-specific-directories* to
  *enable-asdf-binary-locations*

* Daniel Herring's CLISP/Windows/Symlink patch #+(and (or
  win32 windows) (not :clisp))
parent e9a588a4
No related branches found
No related tags found
No related merge requests found
...@@ -133,7 +133,7 @@ ...@@ -133,7 +133,7 @@
#:*include-per-user-information* #:*include-per-user-information*
#:*map-all-source-files* #:*map-all-source-files*
#:output-files-for-system-and-operation #:output-files-for-system-and-operation
#:*place-binaries-in-implementation-specific-directories* #:*enable-asdf-binary-locations*
#:implementation-specific-directory-name) #:implementation-specific-directory-name)
(:use :cl)) (:use :cl))
...@@ -630,13 +630,13 @@ actually-existing directory." ...@@ -630,13 +630,13 @@ actually-existing directory."
(make-pathname (make-pathname
:defaults defaults :version :newest :defaults defaults :version :newest
:name name :type "asd" :case :local))) :name name :type "asd" :case :local)))
#+(or win32 windows) #+(and (or win32 windows) (not :clisp))
(shortcut (make-pathname (shortcut (make-pathname
:defaults defaults :version :newest :defaults defaults :version :newest
:name name :type "asd.lnk" :case :local))) :name name :type "asd.lnk" :case :local)))
(if (and file (probe-file file)) (if (and file (probe-file file))
(return file)) (return file))
#+(or win32 windows) #+(and (or win32 windows) (not :clisp))
(when (probe-file shortcut) (when (probe-file shortcut)
(let ((target (parse-windows-shortcut shortcut))) (let ((target (parse-windows-shortcut shortcut)))
(when target (when target
...@@ -1628,7 +1628,7 @@ If true, compiled lisp files without an explicit mapping (see ...@@ -1628,7 +1628,7 @@ If true, compiled lisp files without an explicit mapping (see
without an explicitly mapping will be placed in subdirectories of without an explicitly mapping will be placed in subdirectories of
their sources.") their sources.")
(defparameter *place-binaries-in-implementation-specific-directories* nil (defparameter *enable-asdf-binary-locations* nil
" "
If true, then compiled lisp files will be placed into a directory If true, then compiled lisp files will be placed into a directory
computed from the Lisp version, Operating System and computer archetecture. computed from the Lisp version, Operating System and computer archetecture.
...@@ -1726,7 +1726,7 @@ See [implementation-specific-directory-name][] for details.") ...@@ -1726,7 +1726,7 @@ See [implementation-specific-directory-name][] for details.")
"Return a name that can be used as a directory name that is "Return a name that can be used as a directory name that is
unique to a Lisp implementation, Lisp implementation version, unique to a Lisp implementation, Lisp implementation version,
operating system, and hardware architecture." operating system, and hardware architecture."
(and *place-binaries-in-implementation-specific-directories* (and *enable-asdf-binary-locations*
(list (list
(or *implementation-specific-directory-name* (or *implementation-specific-directory-name*
(setf *implementation-specific-directory-name* (setf *implementation-specific-directory-name*
......
...@@ -118,7 +118,7 @@ If you want to keep `FASL` files out of source tree entirely \*centralize-lisp-b ...@@ -118,7 +118,7 @@ If you want to keep `FASL` files out of source tree entirely \*centralize-lisp-b
Here is a summary of the variables that control ASDF's source-to-binary mappings: Here is a summary of the variables that control ASDF's source-to-binary mappings:
* \*place-binaries-in-implementation-specific-directories\*: * \*enable-asdf-binary-locations\*:
If false, then ASDF will place binaries in the same If false, then ASDF will place binaries in the same
directory as the source. If true, then ASDF will move the directory as the source. If true, then ASDF will move the
binaries using the rest of the configuration. Defaults to binaries using the rest of the configuration. Defaults to
......
...@@ -809,7 +809,7 @@ ASDF includes code to control where the binaries files are places. The location ...@@ -809,7 +809,7 @@ ASDF includes code to control where the binaries files are places. The location
{docs *map-all-source-files*} {docs *map-all-source-files*}
{docs *place-binaries-in-implementation-specific-directories*} {docs *enable-asdf-binary-locations*}
{docs *source-to-target-mappings*} {docs *source-to-target-mappings*}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment