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 @@
#:*include-per-user-information*
#:*map-all-source-files*
#:output-files-for-system-and-operation
#:*place-binaries-in-implementation-specific-directories*
#:*enable-asdf-binary-locations*
#:implementation-specific-directory-name)
(:use :cl))
......@@ -630,13 +630,13 @@ actually-existing directory."
(make-pathname
:defaults defaults :version :newest
:name name :type "asd" :case :local)))
#+(or win32 windows)
#+(and (or win32 windows) (not :clisp))
(shortcut (make-pathname
:defaults defaults :version :newest
:name name :type "asd.lnk" :case :local)))
(if (and file (probe-file file))
(return file))
#+(or win32 windows)
#+(and (or win32 windows) (not :clisp))
(when (probe-file shortcut)
(let ((target (parse-windows-shortcut shortcut)))
(when target
......@@ -1628,7 +1628,7 @@ If true, compiled lisp files without an explicit mapping (see
without an explicitly mapping will be placed in subdirectories of
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
computed from the Lisp version, Operating System and computer archetecture.
......@@ -1726,7 +1726,7 @@ See [implementation-specific-directory-name][] for details.")
"Return a name that can be used as a directory name that is
unique to a Lisp implementation, Lisp implementation version,
operating system, and hardware architecture."
(and *place-binaries-in-implementation-specific-directories*
(and *enable-asdf-binary-locations*
(list
(or *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
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
directory as the source. If true, then ASDF will move the
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
{docs *map-all-source-files*}
{docs *place-binaries-in-implementation-specific-directories*}
{docs *enable-asdf-binary-locations*}
{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