Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
178b344b
Commit
178b344b
authored
Mar 18, 2013
by
Francois-Rene Rideau
Browse files
2.32.20: fix monolithic-fasl-op on ECL.
parent
e25c7c5c
Changes
6
Hide whitespace changes
Inline
Side-by-side
asdf.asd
View file @
178b344b
...
...
@@ -74,7 +74,7 @@
:licence
"MIT"
:description
"Another System Definition Facility"
:long-description
"ASDF builds Common Lisp software organized into defined systems."
:version
"2.32.
19
"
;; to be automatically updated by make bump-version
:version
"2.32.
20
"
;; to be automatically updated by make bump-version
:depends-on
()
#+
asdf3
:encoding
#+
asdf3
:utf-8
;; For most purposes, asdf itself specially counts as a builtin system.
...
...
bundle.lisp
View file @
178b344b
...
...
@@ -70,15 +70,12 @@
;; On "normal" Lisps: produce an image file from system and dependencies.
((
selfward-operation
:initform
'
(
monolithic-fasl-op
monolithic-lib-op
))))
(
defclass
monolithic-fasl-op
(
monolithic-bundle-op
basic-fasl-op
selfward-operation
)
;; Create a single fasl for the system and its dependencies.
((
selfward-operation
:initform
'load-fasl-op
)))
;; Create a single fasl for the system and its dependencies.
(
defclass
monolithic-fasl-op
(
monolithic-bundle-op
basic-fasl-op
)
())
(
defclass
monolithic-lib-op
(
monolithic-bundle-op
basic-compile-op
sideway-operation
selfward-operation
)
(
defclass
monolithic-lib-op
(
monolithic-bundle-op
basic-compile-op
)
;; ECL: Create a single linkable library for the system and its dependencies.
((
bundle-type
:initform
:lib
)
(
selfward-operation
:initform
'lib-op
)
(
sideway-operation
:initform
'lib-op
)))
((
bundle-type
:initform
:lib
)))
(
defclass
monolithic-dll-op
(
monolithic-bundle-op
basic-compile-op
sideway-operation
selfward-operation
)
((
bundle-type
:initform
:dll
)
...
...
@@ -215,9 +212,10 @@
(
defmethod
component-depends-on
((
o
monolithic-fasl-op
)
(
c
system
))
(
declare
(
ignorable
o
))
`
((
fasl-op
,@
(
required-components
c
:other-systems
t
:component-type
'system
:goal-operation
(
find-operation
o
'load-fasl-op
)
:keep-operation
'fasl-op
))
`
((
#-
(
or
ecl
mkcl
)
fasl-op
#+
(
or
ecl
mkcl
)
lib-op
,@
(
required-components
c
:other-systems
t
:component-type
'system
:goal-operation
(
find-operation
o
'load-fasl-op
)
:keep-operation
'fasl-op
))
,@
(
call-next-method
)))
(
defmethod
component-depends-on
((
o
lib-op
)
(
c
system
))
...
...
header.lisp
View file @
178b344b
;;; -*- mode: Common-Lisp; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
;;; This is ASDF 2.32.
19
: Another System Definition Facility.
;;; This is ASDF 2.32.
20
: Another System Definition Facility.
;;;
;;; Feedback, bug reports, and patches are all welcome:
;;; please mail to <asdf-devel@common-lisp.net>.
...
...
uiop/lisp-build.lisp
View file @
178b344b
...
...
@@ -52,7 +52,7 @@ Note that ASDF ALWAYS raises an error if it fails to create an output file when
(
defun
get-optimization-settings
()
"Get current compiler optimization settings, ready to PROCLAIM again"
#-
(
or
clisp
clozure
cmu
ecl
sbcl
scl
)
(
warn
"~S does not support ~S. Please help me fix that."
'get-optimization-settings
(
lisp-
implementation
))
(
warn
"~S does not support ~S. Please help me fix that."
'get-optimization-settings
(
implementation
-type
))
#+
clozure
(
ccl:declaration-information
'optimize
nil
)
#+
(
or
clisp
cmu
ecl
sbcl
scl
)
(
let
((
settings
'
(
speed
space
safety
debug
compilation-speed
#+
(
or
cmu
scl
)
c::brevity
)))
...
...
upgrade.lisp
View file @
178b344b
...
...
@@ -52,7 +52,7 @@ You can compare this string with e.g.: (ASDF:VERSION-SATISFIES (ASDF:ASDF-VERSIO
;; "3.4.5.67" would be a development version in the official upstream of 3.4.5.
;; "3.4.5.0.8" would be your eighth local modification of official release 3.4.5
;; "3.4.5.67.8" would be your eighth local modification of development version 3.4.5.67
(
asdf-version
"2.32.
19
"
)
(
asdf-version
"2.32.
20
"
)
(
existing-version
(
asdf-version
)))
(
setf
*asdf-version*
asdf-version
)
(
when
(
and
existing-version
(
not
(
equal
asdf-version
existing-version
)))
...
...
version.lisp-expr
View file @
178b344b
"2.32.
19
"
"2.32.
20
"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment